add more neovim plugins and alias eza for ls in zsh

This commit is contained in:
Mark Riedesel 2024-06-18 15:43:36 -05:00
parent b2322f2877
commit 874cd444ba
13 changed files with 228 additions and 13 deletions

View file

@ -0,0 +1,12 @@
return {
'folke/tokyonight.nvim',
priority = 1000,
config = function ()
require('tokyonight').setup({
style = 'night',
on_colors = function () end,
on_highlights = function () end,
})
vim.cmd('colorscheme tokyonight')
end,
}