New neovim config
Uses lazy nvim and Lua instead of the old Vundle and vimscript setup.
This commit is contained in:
11
NeoVim/.config/nvim/lua/plugins/neosolarized.lua
Normal file
11
NeoVim/.config/nvim/lua/plugins/neosolarized.lua
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user