diff --git a/nvim/lua/kogakure/lsp/mason.lua b/nvim/lua/kogakure/lsp/mason.lua index b0b0366..f563f8d 100644 --- a/nvim/lua/kogakure/lsp/mason.lua +++ b/nvim/lua/kogakure/lsp/mason.lua @@ -26,14 +26,12 @@ local servers = { "pyright", "rust_analyzer", "sourcery", - --[[ "stylelint_lsp", ]] "sumneko_lua", "svelte", "tailwindcss", "theme_check", "tsserver", "vuels", - -- "remark_ls", } mason.setup({ diff --git a/nvim/lua/kogakure/lsp/settings/sumneko_lua.lua b/nvim/lua/kogakure/lsp/settings/sumneko_lua.lua index f62fc65..1c2cb59 100644 --- a/nvim/lua/kogakure/lsp/settings/sumneko_lua.lua +++ b/nvim/lua/kogakure/lsp/settings/sumneko_lua.lua @@ -2,7 +2,7 @@ return { settings = { Lua = { diagnostics = { - globals = { "vim", "hs", "window" }, + globals = { "vim", "hs", "window", "pcall" }, }, workspace = { library = { diff --git a/nvim/lua/kogakure/plugins.lua b/nvim/lua/kogakure/plugins.lua index fd37dcf..46d73d9 100644 --- a/nvim/lua/kogakure/plugins.lua +++ b/nvim/lua/kogakure/plugins.lua @@ -103,6 +103,9 @@ return packer.startup(function(use) use("nvim-treesitter/playground") -- Treesitter information in Neovim use("nvim-treesitter/nvim-treesitter-context") -- Show context + -- DAP + use("mfussenegger/nvim-dap") -- Debug Adapter Protocol + -- File/Window Management use("ThePrimeagen/harpoon") -- Getting you where you want use("ThePrimeagen/git-worktree.nvim") -- Git Worktree @@ -153,7 +156,6 @@ return packer.startup(function(use) use("rstacruz/vim-xtract") -- Extract code into new file use("tpope/vim-repeat") -- Repeat plugins use("tpope/vim-surround") -- Replace, add, remove surroundings - use("mfussenegger/nvim-dap") -- Debug Adapter Protocol use("wuelnerdotexe/vim-astro") -- Astro support use("MunifTanjim/prettier.nvim") -- Prettier use("untitled-ai/jupyter_ascending.vim") -- Interact with jupyter_ascending