Compare commits

...

2 commits

2 changed files with 5 additions and 5 deletions

View file

@ -148,10 +148,10 @@ local setupGroups = function(c)
DiagnosticFloatingWarn = { fg = c.diagnostic_warning, bg = c.popup_warning_bg }, DiagnosticFloatingWarn = { fg = c.diagnostic_warning, bg = c.popup_warning_bg },
DiagnosticFloatingInfo = { fg = c.diagnostic_info, bg = c.popup_info_bg }, DiagnosticFloatingInfo = { fg = c.diagnostic_info, bg = c.popup_info_bg },
DiagnosticFloatingHint = { fg = c.diagnostic_hint, bg = c.popup_hint_bg }, DiagnosticFloatingHint = { fg = c.diagnostic_hint, bg = c.popup_hint_bg },
DiagnosticUnderlineError = { fg = c.diagnostic_error, undercurl = true }, DiagnosticUnderlineError = { fg = c.foreground, undercurl = true, sp = c.diagnostic_error },
DiagnosticUnderlineWarn = { fg = c.diagnostic_warn, undercurl = true }, DiagnosticUnderlineWarn = { fg = c.foreground, undercurl = true, sp = c.diagnostic_warn },
DiagnosticUnderlineInfo = { fg = c.diagnostic_info, undercurl = true }, DiagnosticUnderlineInfo = { fg = c.foreground, undercurl = true, sp = c.diagnostic_info },
DiagnosticUnderlinehint = { fg = c.diagnostic_hint, undercurl = true }, DiagnosticUnderlinehint = { fg = c.foreground, undercurl = true, sp = c.diagnostic_hint },
DiagnosticSignError = { fg = c.diagnostic_error }, DiagnosticSignError = { fg = c.diagnostic_error },
DiagnosticSignHint = { fg = c.diagnostic_hint }, DiagnosticSignHint = { fg = c.diagnostic_hint },

View file

@ -8,7 +8,7 @@ vim.g.maplocalleader = ","
vim.opt.cursorline = true vim.opt.cursorline = true
vim.opt.laststatus = 0 vim.opt.laststatus = 0
vim.opt.number = true vim.opt.number = true
vim.opt.relativenumber = true vim.opt.relativenumber = false
vim.opt.ruler = true vim.opt.ruler = true
vim.opt.syntax = "on" vim.opt.syntax = "on"
vim.opt.termguicolors = true vim.opt.termguicolors = true