add themes and change initial theme
This commit is contained in:
parent
5d516ba85f
commit
60ca6777e2
4
init.lua
4
init.lua
|
@ -317,7 +317,9 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
|
|
||||||
require 'kickstart.plugins.autocomplete',
|
require 'kickstart.plugins.autocomplete',
|
||||||
require 'kickstart.plugins.themes.tokyonight',
|
-- THEMES
|
||||||
|
-- require 'kickstart.plugins.themes.tokyonight',
|
||||||
|
require 'kickstart.plugins.themes.catppuccin',
|
||||||
-- Highlight todo, notes, etc in comments
|
-- Highlight todo, notes, etc in comments
|
||||||
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
|
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
|
||||||
require 'kickstart.plugins.mini',
|
require 'kickstart.plugins.mini',
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
return { -- You can easily change to a different colorscheme.
|
||||||
|
-- Change the name of the colorscheme plugin below, and then
|
||||||
|
-- change the command in the config to whatever the name of that colorscheme is.
|
||||||
|
--
|
||||||
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||||
|
'catppuccin/nvim',
|
||||||
|
name = 'catppuccin',
|
||||||
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||||
|
init = function()
|
||||||
|
-- Load the colorscheme here.
|
||||||
|
-- Like many other themes, this one has different styles, and you could load
|
||||||
|
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
||||||
|
vim.cmd.colorscheme 'catppuccin'
|
||||||
|
|
||||||
|
-- You can configure highlights by doing something like:
|
||||||
|
-- vim.cmd.hi 'Comment gui=none'
|
||||||
|
end,
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
return {
|
||||||
|
'projekt0n/github-nvim-theme',
|
||||||
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
|
config = function()
|
||||||
|
require('github-theme').setup {
|
||||||
|
-- ...
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.cmd 'colorscheme github_dark'
|
||||||
|
end,
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
return {
|
||||||
|
'rebelot/kanagawa.nvim',
|
||||||
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
|
config = function()
|
||||||
|
require('kanagawa').setup {
|
||||||
|
-- ...
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.cmd 'colorscheme kanagawa'
|
||||||
|
end,
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
return {
|
||||||
|
'EdenEast/nightfox.nvim',
|
||||||
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
|
config = function()
|
||||||
|
require('nightfox').setup {
|
||||||
|
-- ...
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.cmd 'colorscheme nightfox'
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in New Issue