summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-13 20:14:28 -0400
committerseth <[email protected]>2024-07-14 13:47:39 -0400
commitf5f52d704f17a31aaa6542cb9957b6443c2a5633 (patch)
tree7f7c9791fc364dc254bce1a1ccf3a162bb776baa
parent5ec30e9a2b9047713c060c90a5e7930fafc2a3d6 (diff)
remove dressing & which-key
-rw-r--r--neovim.nix3
-rw-r--r--plugin/dressing.lua6
-rw-r--r--plugin/which-key.lua10
3 files changed, 0 insertions, 19 deletions
diff --git a/neovim.nix b/neovim.nix
index 465f805..996f674 100644
--- a/neovim.nix
+++ b/neovim.nix
@@ -52,8 +52,6 @@ let
cmp-nvim-lsp
cmp-rg
- dressing-nvim
-
efmls-configs-nvim
fidget-nvim
@@ -76,7 +74,6 @@ let
nvim-treesitter.withAllGrammars
trouble-nvim
- which-key-nvim
];
extraPackages = [
diff --git a/plugin/dressing.lua b/plugin/dressing.lua
deleted file mode 100644
index dc926fe..0000000
--- a/plugin/dressing.lua
+++ /dev/null
@@ -1,6 +0,0 @@
-if vim.g.did_load_dressing_plugin then
- return
-end
-vim.g.did_load_dressing_plugin = true
-
-require("dressing")
diff --git a/plugin/which-key.lua b/plugin/which-key.lua
deleted file mode 100644
index e6d5ecc..0000000
--- a/plugin/which-key.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-if vim.g.did_load_which_key_plugin then
- return
-end
-vim.g.did_load_which_key_plugin = true
-
-require("which-key").setup({
- plugins = {
- spelling = { enable = true },
- },
-})