diff --git a/nvim/lua/settings.lua b/nvim/lua/settings.lua index 629f7c4..f95f223 100644 --- a/nvim/lua/settings.lua +++ b/nvim/lua/settings.lua @@ -2,6 +2,7 @@ vim.opt.background = 'dark' -- Force a d vim.opt.clipboard = 'unnamed,unnamedplus' -- Use both the "*" and "+" registers for yanks and deletes (puts things in the system clipboard) vim.opt.colorcolumn = '121' -- Highlight column to show vim.opt.completeopt = 'menu,menuone,noinsert' -- Change how the completion menu is interacted with +vim.opt.cursorcolumn = true -- Highlight the column the cursor is on vim.opt.cursorline = true -- Highlight the line the cursor is on. vim.opt.expandtab = true -- Expand tabs into spaces vim.opt.fileformat = 'unix' -- Explicitly state that files should use the unix style EOL characters.