mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
14 lines
220 B
Lua
14 lines
220 B
Lua
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
|