diff options
Diffstat (limited to 'lua/config/set.lua')
-rw-r--r-- | lua/config/set.lua | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/lua/config/set.lua b/lua/config/set.lua index 08c5d26..82fd73f 100644 --- a/lua/config/set.lua +++ b/lua/config/set.lua @@ -63,6 +63,7 @@ opt.showmatch = false -- highlight line at cursor opt.cursorline = true opt.textwidth = 100 +opt.colorcolumn = "100" -- status line -- show ruler @@ -99,18 +100,6 @@ end opt.title = true --- rounded border around floating windows -local _border = "rounded" -vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { - border = _border, -}) -vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, { - border = _border, -}) -vim.diagnostic.config({ - float = { border = _border }, -}) - -- Highlighting vim.cmd("match Todo /\\(TODO\\|FIXME\\):/") |