changed colorscheme to cattpuccin
This commit is contained in:
@@ -1,4 +1,21 @@
|
|||||||
return {
|
return {
|
||||||
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
require('catppuccin').setup {
|
||||||
|
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
||||||
|
custom_highlights = function(colors)
|
||||||
|
return {
|
||||||
|
LineNr = { fg = '#838DA0', bg = '#495060', },
|
||||||
|
}
|
||||||
|
end
|
||||||
|
}
|
||||||
|
-- load the colorscheme here
|
||||||
|
vim.cmd([[colorscheme catppuccin]])
|
||||||
|
end
|
||||||
|
}
|
||||||
-- {
|
-- {
|
||||||
-- "navarasu/onedark.nvim",
|
-- "navarasu/onedark.nvim",
|
||||||
-- priority = 1000, -- make sure to load this before all the other start plugins
|
-- priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
@@ -18,44 +35,44 @@ return {
|
|||||||
-- require('onedark').load()
|
-- require('onedark').load()
|
||||||
-- end
|
-- end
|
||||||
-- }
|
-- }
|
||||||
{
|
-- {
|
||||||
"folke/tokyonight.nvim",
|
-- "folke/tokyonight.nvim",
|
||||||
priority = 1000, -- make sure to load this before all the other start plugins
|
-- priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
config = function()
|
-- config = function()
|
||||||
local bg = "#011628"
|
-- local bg = "#011628"
|
||||||
local bg_dark = "#011423"
|
-- local bg_dark = "#011423"
|
||||||
local bg_highlight = "#143652"
|
-- local bg_highlight = "#143652"
|
||||||
local bg_search = "#0A64AC"
|
-- local bg_search = "#0A64AC"
|
||||||
local bg_visual = "#275378"
|
-- local bg_visual = "#275378"
|
||||||
local fg = "#CBE0F0"
|
-- local fg = "#CBE0F0"
|
||||||
local fg_dark = "#B4D0E9"
|
-- local fg_dark = "#B4D0E9"
|
||||||
local fg_gutter = "#838DA0"
|
-- local fg_gutter = "#838DA0"
|
||||||
local bg_gutter = "#495060"
|
-- local bg_gutter = "#495060"
|
||||||
local border = "#547998"
|
-- local border = "#547998"
|
||||||
|
--
|
||||||
require("tokyonight").setup({
|
-- require("tokyonight").setup({
|
||||||
style = "night",
|
-- style = "night",
|
||||||
on_colors = function(colors)
|
-- on_colors = function(colors)
|
||||||
colors.bg = bg
|
-- colors.bg = bg
|
||||||
colors.bg_dark = bg_dark
|
-- colors.bg_dark = bg_dark
|
||||||
colors.bg_float = bg_dark
|
-- colors.bg_float = bg_dark
|
||||||
colors.bg_highlight = bg_highlight
|
-- colors.bg_highlight = bg_highlight
|
||||||
colors.bg_popup = bg_dark
|
-- colors.bg_popup = bg_dark
|
||||||
colors.bg_search = bg_search
|
-- colors.bg_search = bg_search
|
||||||
colors.bg_sidebar = bg_dark
|
-- colors.bg_sidebar = bg_dark
|
||||||
colors.bg_statusline = bg_dark
|
-- colors.bg_statusline = bg_dark
|
||||||
colors.bg_visual = bg_visual
|
-- colors.bg_visual = bg_visual
|
||||||
colors.border = border
|
-- colors.border = border
|
||||||
colors.fg = fg
|
-- colors.fg = fg
|
||||||
colors.fg_dark = fg_dark
|
-- colors.fg_dark = fg_dark
|
||||||
colors.fg_float = fg
|
-- colors.fg_float = fg
|
||||||
colors.fg_gutter = fg_gutter
|
-- colors.fg_gutter = fg_gutter
|
||||||
colors.bg_gutter = bg_gutter
|
-- colors.bg_gutter = bg_gutter
|
||||||
colors.fg_sidebar = fg_dark
|
-- colors.fg_sidebar = fg_dark
|
||||||
end,
|
-- end,
|
||||||
})
|
-- })
|
||||||
-- load the colorscheme here
|
-- -- load the colorscheme here
|
||||||
vim.cmd([[colorscheme tokyonight]])
|
-- vim.cmd([[colorscheme tokyonight]])
|
||||||
end,
|
-- end,
|
||||||
},
|
-- },
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user