(neovim) better colors for column and search
This commit is contained in:
parent
1004493681
commit
41114a6bcb
1 changed files with 2 additions and 1 deletions
|
@ -16,9 +16,10 @@ vim.api.nvim_create_autocmd("FileType", {
|
|||
-- set some colors
|
||||
vim.api.nvim_create_autocmd({ "BufReadPre" }, {
|
||||
callback = function()
|
||||
vim.api.nvim_set_hl(0, "ColorColumn", { bg = "#770000" })
|
||||
vim.api.nvim_set_hl(0, "ColorColumn", { bg = "#770000", fg = "#feffff" })
|
||||
vim.api.nvim_set_hl(0, "DiffChange", { bg = "NONE", fg = "#e7c547" })
|
||||
vim.api.nvim_set_hl(0, "DiffText", { bg = "NONE", fg = "#ff8700" })
|
||||
vim.api.nvim_set_hl(0, "Search", { bg = "#770000", fg = "#feffff" })
|
||||
vim.api.nvim_set_hl(0, "Visual", { bg = "#0094d8", fg = "#ffffff" })
|
||||
end,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue