Files
dotfiles/nvim/dot-config/nvim/lua/plugins/tokyonight.lua
T
wesley f4295a7ac1 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.
2024-08-02 14:31:14 -04:00

11 lines
154 B
Lua

return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
config = function()
vim.cmd.colorscheme "tokyonight-storm"
end
}