New neovim config

Uses lazy nvim and Lua instead of the old Vundle and vimscript setup.
This commit is contained in:
2024-10-14 00:44:29 +01:00
parent e36e3bd66c
commit bc3fae6b88
7 changed files with 78 additions and 108 deletions

View File

@@ -0,0 +1,11 @@
return {
"overcache/NeoSolarized",
init = function ()
vim.cmd.colorscheme "NeoSolarized"
-- Make background transparent
vim.cmd.hi "Normal guibg=none"
vim.cmd.hi "NonText guibg=none"
vim.cmd.hi "Normal ctermbg=none"
vim.cmd.hi "NonText ctermbg=none"
end
}