Skip to content

Commit

Permalink
Merge pull request #41 from redyf/dev
Browse files Browse the repository at this point in the history
feat: removed telescope-manix
  • Loading branch information
redyf authored Feb 3, 2024
2 parents 6208755 + 722ee12 commit d18912f
Showing 1 changed file with 10 additions and 21 deletions.
31 changes: 10 additions & 21 deletions config/telescope/telescope.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{ pkgs, ... }: {
extraPlugins = with pkgs.vimPlugins; [
telescope-manix
];

{ inputs
, pkgs
, ...
}: {
plugins.telescope = {
enable = true;
extensions = {
Expand Down Expand Up @@ -153,16 +152,6 @@
};
}

{
mode = "n";
key = "<leader>fm";
action = "<cmd>Telescope manix<cr>";
options = {
desc = "Manix";
silent = true;
};
}

# {
# mode = "n";
# key = "<leader>,";
Expand All @@ -173,13 +162,13 @@
# }
];
extraConfigLua = ''
local telescope = require('telescope')
telescope.setup{
pickers = {
colorscheme = {
enable_preview = true
local telescope = require('telescope')
telescope.setup{
pickers = {
colorscheme = {
enable_preview = true
}
}
}
}
'';
}

0 comments on commit d18912f

Please sign in to comment.