feat: removing gopls LSP and removing the colourcolumn

This commit is contained in:
Finch 2024-07-08 11:22:38 -05:00
parent 2d4ecac731
commit e64416c730
2 changed files with 0 additions and 2 deletions

View File

@ -45,7 +45,6 @@ return {
'arduino_language_server', 'arduino_language_server',
'clangd', 'clangd',
'emmet_ls', 'emmet_ls',
'gopls',
'intelephense', 'intelephense',
'jdtls', 'jdtls',
'lua_ls', 'lua_ls',

View File

@ -1,6 +1,5 @@
vim.opt.background = 'dark' -- Force a dark background for the colorscheme 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.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.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.cursorcolumn = true -- Highlight the column the cursor is on
vim.opt.cursorline = true -- Highlight the line the cursor is on. vim.opt.cursorline = true -- Highlight the line the cursor is on.