This commit is contained in:
tronglt 2023-03-13 07:18:18 +07:00
parent 4a37a0a9b1
commit 7b670b6852
2 changed files with 32 additions and 30 deletions

View file

@ -0,0 +1,13 @@
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {
'folke/tokyonight.nvim',
config = function()
require('tokyonight').setup({
transparent = true
})
vim.cmd [[colorscheme tokyonight-storm]]
end
}