Neovim Addition

Added in my custom configuration from Neovim that I started writing
from scratch. So far only have implemented tokyonight theme,
telescope, treesitter, and neotree.
This commit is contained in:
2024-08-02 14:31:14 -04:00
parent d187efb257
commit f4295a7ac1
7 changed files with 71 additions and 0 deletions
@@ -0,0 +1,10 @@
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
config = function()
vim.cmd.colorscheme "tokyonight-storm"
end
}