Added plugins
This commit is contained in:
parent
7af594fd31
commit
79005e5771
10 changed files with 141 additions and 8 deletions
9
lua/mundy/eyecandy.lua
Normal file
9
lua/mundy/eyecandy.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.signcolumn = "number"
|
||||
|
||||
function LineNumberColors()
|
||||
vim.api.nvim_set_hl(0, 'LineNrAbove', { fg='grey', bold=false }) -- '#F0DBAF'
|
||||
vim.api.nvim_set_hl(0, 'LineNr', { fg='white', bold=true })
|
||||
vim.api.nvim_set_hl(0, 'LineNrBelow', { fg='grey', bold=false })
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue