This commit is contained in:
Christoffer Martinsson 2023-07-06 13:10:54 +02:00
commit d2dc79522c
3 changed files with 392 additions and 390 deletions

View File

@ -1,3 +1,6 @@
gui:
showIcons: false
theme:
selectedLineBgColor:
- '#585858' # set to `default` to have no background colour

View File

@ -594,7 +594,6 @@ local handlers = {
require('lspconfig').rust_analyzer.setup {
on_attach = on_attach,
handlers = handlers,
-- require("rust-tools").setup()
}
local opts = {

View File

@ -40,7 +40,7 @@ function theme.setup()
ErrorMsg = { fg = p.color1, bg = p.background },
Exception = { fg = p.color6 },
Float = { fg = p.color5 },
FloatBorder = { fg = p.comment , bg = p.black},
FloatBorder = { fg = p.comment, bg = p.black },
FoldColumn = { fg = p.color4, bg = p.background },
Folded = { fg = p.color4, bg = p.background },
Function = { fg = p.color6, style = options.styles.functions },