diff --git a/vim/.vim/lua/plugins/godot.lua b/vim/.vim/lua/plugins/godot.lua index 853befa..1327d73 100644 --- a/vim/.vim/lua/plugins/godot.lua +++ b/vim/.vim/lua/plugins/godot.lua @@ -4,20 +4,4 @@ return { "habamax/vim-godot", cond = not use_google(), }, - { - "QuickGD/quickgd.nvim", - ft = { "gdshader", "gdshaderinc" }, - cmd = { "GodotRun", "GodotRunLast", "GodotStart" }, - cond = not use_google(), - -- Use opts if passing in settings else use config - init = function() - vim.filetype.add({ - extension = { - gdshaderinc = "gdshaderinc", - }, - }) - end, - config = true, - opts = {}, -- remove config and use this if changing settings. - }, } diff --git a/vim/.vim/lua/plugins/lsp-lens.lua b/vim/.vim/lua/plugins/lsp-lens.lua index 5414c9a..0603a13 100644 --- a/vim/.vim/lua/plugins/lsp-lens.lua +++ b/vim/.vim/lua/plugins/lsp-lens.lua @@ -1,18 +1,18 @@ -return { - "VidocqH/lsp-lens.nvim", - event = "BufEnter", - config = function() - vim.cmd([[autocmd BufEnter,CursorHold,InsertLeave lua vim.lsp.codelens.refresh()]]) - - require("lsp-lens").setup({ - enable = true, - include_declaration = false, -- Reference include declaration - sections = { -- Enable / Disable specific request, formatter example looks 'Format Requests' - definition = false, - references = true, - implements = true, - git_authors = true, - }, - }) - end, -} +-- return { +-- "VidocqH/lsp-lens.nvim", +-- event = "BufEnter", +-- config = function() +-- vim.cmd([[autocmd BufEnter,CursorHold,InsertLeave lua vim.lsp.codelens.refresh()]]) +-- +-- require("lsp-lens").setup({ +-- enable = true, +-- include_declaration = false, -- Reference include declaration +-- sections = { -- Enable / Disable specific request, formatter example looks 'Format Requests' +-- definition = false, +-- references = true, +-- implements = true, +-- git_authors = true, +-- }, +-- }) +-- end, +-- }