chore(nvim): color tokyonight

main
sudo pacman -Syu 2023-06-30 01:04:45 +07:00
parent 476f28e1a9
commit 25ca49023f
1 changed files with 11 additions and 2 deletions

View File

@ -93,6 +93,17 @@ end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
-- Colorscheme
-- https://github.com/folke/tokyonight.nvim
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
config = function()
vim.api.nvim_command("colorscheme tokyonight")
end,
},
-- https://github.com/junegunn/fzf.vim
"junegunn/fzf",
"junegunn/fzf.vim",
@ -311,5 +322,3 @@ require("lazy").setup({
-- https://github.com/github/copilot.vim
"github/copilot.vim",
})
vim.api.nvim_command("colorscheme minischeme")