Remove vim and add nvim config
This commit is contained in:
parent
92b6c017d1
commit
e06ce1a49a
26 changed files with 665 additions and 66 deletions
14
nvim/lua/plugins/colorscheme.lua
Normal file
14
nvim/lua/plugins/colorscheme.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
{
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
priority = 1000 ,
|
||||
config = true,
|
||||
init = function()
|
||||
require("gruvbox").setup({
|
||||
contrast = "hard",
|
||||
hls_cursor = "red",
|
||||
})
|
||||
vim.cmd("colorscheme gruvbox")
|
||||
end
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue