make vim line numbers brighter

This commit is contained in:
Sean Buckley 2023-11-07 11:50:22 -05:00
parent 7af5c6ec80
commit bd2df06475

View file

@ -23,3 +23,8 @@ if pcall(require, "null-ls") then
}, },
} }
end end
vim.api.nvim_create_autocmd('BufEnter', {
pattern = '',
command = 'highlight LineNr guifg=#aaaaff'
})