diff --git a/README.md b/README.md index 58b7a33..6f35cf3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Nixvim ## TODO -[ ] Open last active buffer after :bd -[ ] Code action -[ ] DAP support +- [ ] Open last active buffer after :bd +- [ ] Code action +- [ ] DAP support diff --git a/config/buffer/bufdelete.nix b/config/buffer/bufdelete.nix new file mode 100644 index 0000000..dcf1211 --- /dev/null +++ b/config/buffer/bufdelete.nix @@ -0,0 +1,23 @@ +{ helpers, ... }: +{ + plugins = { + bufdelete = { + enable = true; + }; + }; + + keymaps = [ + { + mode = [ "n" ]; + key = ""; + action = helpers.mkRaw '' + function() + require("bufdelete").bufdelete(0, false) + end + ''; + options = { + desc = "Toggle terminal"; + }; + } + ]; +} diff --git a/config/default.nix b/config/default.nix index bd05fe0..78f9be7 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,6 +1,7 @@ { # Import all your configuration modules here imports = [ + ./buffer/bufdelete.nix ./blink.nix ./bufferline.nix ./comment.nix @@ -15,7 +16,6 @@ ./lsp ./lualine.nix ./neo-tree.nix - # ./nvim-cmp.nix # ./project.nix ./rainbow-delimiters.nix ./telescope.nix @@ -23,6 +23,5 @@ ./treesitter.nix ./which-key.nix ]; - plugins.web-devicons.enable = true; } diff --git a/config/keybindings.nix b/config/keybindings.nix index 35d5bc3..cdd86f8 100644 --- a/config/keybindings.nix +++ b/config/keybindings.nix @@ -83,14 +83,5 @@ desc = "Next Buffer"; }; } - - { - mode = [ "n" "i" ]; - key = ""; - action = "tabprevious"; - options = { - desc = "Previous Tab"; - }; - } ]; } diff --git a/config/telescope.nix b/config/telescope.nix index c394c3d..7eb2278 100644 --- a/config/telescope.nix +++ b/config/telescope.nix @@ -6,7 +6,10 @@ }; keymaps = [ { - mode = [ "n" "i" ]; + mode = [ + "n" + "i" + ]; key = ""; action = helpers.mkRaw '' function() @@ -18,11 +21,14 @@ }; } { - mode = [ "n" "i" ]; + mode = [ + "n" + "i" + ]; key = ""; action = helpers.mkRaw '' function() - require("telescope.builtin").help_tags() + require("telescope.builtin").live_grep() end ''; } diff --git a/config/toggleterm.nix b/config/toggleterm.nix index 0cbac6a..68a840c 100644 --- a/config/toggleterm.nix +++ b/config/toggleterm.nix @@ -4,8 +4,7 @@ }; keymaps = [ - -{ + { mode = [ "n" ]; key = "tt"; action = "ToggleTerm";