summary refs log tree commit diff
path: root/.vim/lua/internal/plugins/gentoo.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/internal/plugins/gentoo.lua')
-rw-r--r--.vim/lua/internal/plugins/gentoo.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/.vim/lua/internal/plugins/gentoo.lua b/.vim/lua/internal/plugins/gentoo.lua
deleted file mode 100644
index 2fc8684..0000000
--- a/.vim/lua/internal/plugins/gentoo.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-return {
-  {
-    'gentoo/gentoo-syntax',
-    ft = { 'ebuild' },
-    init = function()
-      vim.api.nvim_create_autocmd('LspAttach', {
-        callback = function(args)
-          if vim.opt.filetype == 'ebuild' then
-            vim.lsp.stop_client(vim.lsp.get_clients({ bufnr = args.bufnr }))
-          end
-        end,
-      })
-    end,
-  },
-}