f4295a7ac1
Added in my custom configuration from Neovim that I started writing from scratch. So far only have implemented tokyonight theme, telescope, treesitter, and neotree.
11 lines
154 B
Lua
11 lines
154 B
Lua
return {
|
|
"folke/tokyonight.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
opts = {},
|
|
config = function()
|
|
vim.cmd.colorscheme "tokyonight-storm"
|
|
end
|
|
}
|
|
|