diff --git a/nvim/lua/plugins/mason.lua b/nvim/lua/plugins/mason.lua index 62a9f98..3ef72d6 100644 --- a/nvim/lua/plugins/mason.lua +++ b/nvim/lua/plugins/mason.lua @@ -45,7 +45,6 @@ return { 'arduino_language_server', 'clangd', 'emmet_ls', - 'gopls', 'intelephense', 'jdtls', 'lua_ls', diff --git a/nvim/lua/settings.lua b/nvim/lua/settings.lua index f95f223..238191e 100644 --- a/nvim/lua/settings.lua +++ b/nvim/lua/settings.lua @@ -1,6 +1,5 @@ vim.opt.background = 'dark' -- Force a dark background for the colorscheme vim.opt.clipboard = 'unnamed,unnamedplus' -- Use both the "*" and "+" registers for yanks and deletes (puts things in the system clipboard) -vim.opt.colorcolumn = '121' -- Highlight column to show vim.opt.completeopt = 'menu,menuone,noinsert' -- Change how the completion menu is interacted with vim.opt.cursorcolumn = true -- Highlight the column the cursor is on vim.opt.cursorline = true -- Highlight the line the cursor is on.