Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kaufmajo committed Jan 16, 2023
1 parent fc6cfda commit d27872f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvim/lua/user/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ vim.opt.redrawtime = 10000 -- Allow more time for loading syntax on large files

vim.api.nvim_create_autocmd({ "InsertEnter" }, {
callback = function()
--vim.api.nvim_set_hl(0, "Normal", {bg="#110000"})
--vim.api.nvim_set_hl(0, "Normal", {bg="#110000"})
vim.opt.cursorline = true
end
})
vim.api.nvim_create_autocmd({ "InsertLeave" }, {
callback = function()
--vim.api.nvim_set_hl(0, "Normal", {bg="#001100"})
--vim.api.nvim_set_hl(0, "Normal", {bg="#001100"})
vim.opt.cursorline = false
end
})

0 comments on commit d27872f

Please sign in to comment.