speedie-nvim | Add new config

This commit is contained in:
Jacob 2024-01-19 16:38:37 +01:00
parent 4c96b621d6
commit 9942e2d01a

View file

@ -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