refactor(nvim): move color configurations in separate files

This commit is contained in:
Stefan Imhoff
2023-03-24 19:19:27 +01:00
parent b038aac048
commit fa2052ceb8
5 changed files with 20 additions and 11 deletions

View File

@@ -0,0 +1,4 @@
-- https://github.com/chriskempson/base16-vim
return {
"chriskempson/base16-vim",
}

View File

@@ -0,0 +1,4 @@
-- https://github.com/catppuccin/nvim
return {
{ "catppuccin/nvim", name = "catppuccin" },
}

View File

@@ -1,18 +1,9 @@
-- https://github.com/folke/tokyonight.nvim -- Configure LazyVim to load Tokyo Night
-- https://github.com/chriskempson/base16-vim
-- https://github.com/kartikp10/noctis.nvim
-- https://github.com/catppuccin/nvim
return { return {
"folke/tokyonight.nvim", -- Tokyo Night color scheme
"chriskempson/base16-vim", -- Base16 colorschemes
{ "kartikp10/noctis.nvim", dependencies = "rktjmp/lush.nvim" }, -- Noctis color scheme
{ "catppuccin/nvim", name = "catppuccin" }, -- Catppuccin color scheme
-- Configure LazyVim to load Tokyo Night
{ {
"LazyVim/LazyVim", "LazyVim/LazyVim",
opts = { opts = {
colorscheme = "tokyonight-night", colorscheme = "tokyonight",
}, },
}, },
} }

View File

@@ -0,0 +1,4 @@
-- https://github.com/kartikp10/noctis.nvim
return {
{ "kartikp10/noctis.nvim", dependencies = "rktjmp/lush.nvim" }, -- Noctis color scheme
}

View File

@@ -0,0 +1,6 @@
-- https://github.com/folke/tokyonight.nvim
return {
"folke/tokyonight.nvim",
lazy = true,
opts = { style = "night" },
}