mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
add nord for neovim
This commit is contained in:
parent
842d25e798
commit
e9fef7dbbb
@ -17,4 +17,5 @@
|
|||||||
base0D = "#EBCB8B";
|
base0D = "#EBCB8B";
|
||||||
base0E = "#A3BE8C";
|
base0E = "#A3BE8C";
|
||||||
base0F = "#B48EAD";
|
base0F = "#B48EAD";
|
||||||
|
neovimConfig = ./neovim.lua;
|
||||||
}
|
}
|
||||||
|
13
modules/colorscheme/nord/neovim.lua
Normal file
13
modules/colorscheme/nord/neovim.lua
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
M.packer = function(use)
|
||||||
|
use({
|
||||||
|
"shaunsingh/nord.nvim",
|
||||||
|
config = function()
|
||||||
|
vim.g.nord_italic = true
|
||||||
|
vim.cmd("colorscheme nord")
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
Loading…
Reference in New Issue
Block a user