From 3c6a8a7cfb7aa70866df76b44d0f36ac64684c46 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 3 Apr 2025 14:42:14 +0000 Subject: [PATCH] home: vim: remove 'friendly-snippets' After years of including snippets plug-ins in my dot-files, I never make use of them. Let's just remove it. I'm keeping `luasnip` itself for LSP snippets, which I do kind of see the appeal of (but still fail to use...). --- modules/home/vim/default.nix | 1 - modules/home/vim/plugin/settings/luasnip.lua | 1 - 2 files changed, 2 deletions(-) delete mode 100644 modules/home/vim/plugin/settings/luasnip.lua diff --git a/modules/home/vim/default.nix b/modules/home/vim/default.nix index 8e6bd5c..2583816 100644 --- a/modules/home/vim/default.nix +++ b/modules/home/vim/default.nix @@ -67,7 +67,6 @@ in # Completion luasnip # Snippet manager compatible with LSP - friendly-snippets # LSP snippets collection nvim-cmp # Completion engine cmp-async-path # More responsive path completion cmp-buffer # Words from open buffers diff --git a/modules/home/vim/plugin/settings/luasnip.lua b/modules/home/vim/plugin/settings/luasnip.lua deleted file mode 100644 index 80309d7..0000000 --- a/modules/home/vim/plugin/settings/luasnip.lua +++ /dev/null @@ -1 +0,0 @@ -require("luasnip.loaders.from_vscode").lazy_load()