diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 0e6e354..04db220 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -5,7 +5,6 @@ local cmd = vim.cmd -- Convenient alias local opt = vim.opt -- Convenient alias -local o = vim.o -- Convenient alias local keymap = vim.api.nvim_set_keymap -- Convenient alias local autocmd = vim.api.nvim_create_autocmd -- Convenient alias local sessionFile = '~/.config/nvim/.session.nvim' -- File where the previous buffer is stored @@ -92,9 +91,6 @@ opt.termguicolors = true -- Enable true color opt.autochdir = true -- Automatically change directory to the file we're editing opt.background = 'dark' -- Set background to dark -o.t_8f = '\27[38;2;%lu;%lu;%lum' -- To be honest, I don't know what this does but if I remember correctly it's something good. -o.t_8b = '\27[48;2;%lu;%lu;%lum' -- To be honest, I don't know what this does but if I remember correctly it's something good. - cmd([[ highlight Normal ctermfg=grey ctermbg=lightgray guifg=#ffffff guibg=#222222 highlight EndOfBuffer ctermfg=grey ctermbg=lightgray guifg=#ffffff guibg=#222222