mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
trying catppuccin color scheme
This commit is contained in:
@@ -1,24 +1,26 @@
|
||||
return {
|
||||
'EdenEast/nightfox.nvim',
|
||||
lazy = false, -- make sure we load this during startup
|
||||
priority = 1000, -- make sure to load this before all other plugins.
|
||||
opts = {
|
||||
--fox = "terafox", -- change the colorscheme to use terafox
|
||||
styles = {
|
||||
comments = "italic", -- change style of comments to be italic
|
||||
keywords = "bold", -- change style of keywords to be bold
|
||||
functions = "italic,bold" -- styles can be a comma separated list
|
||||
},
|
||||
inverse = {
|
||||
match_paren = true, -- inverse the highlighting of match_parens
|
||||
},
|
||||
colors = {
|
||||
red = "#FF0000", -- Override the red color for MAX POWER
|
||||
--bg_alt = "#000000",
|
||||
},
|
||||
hlgroups = {
|
||||
TSPunctDelimiter = { fg = "${red}" }, -- Override a highlight group with the color red
|
||||
LspCodeLens = { bg = "#000000", style = "italic" },
|
||||
}
|
||||
},
|
||||
}
|
||||
-- return {
|
||||
-- 'EdenEast/nightfox.nvim',
|
||||
-- lazy = false, -- make sure we load this during startup
|
||||
-- priority = 1000, -- make sure to load this before all other plugins.
|
||||
-- opts = {
|
||||
-- --fox = "terafox", -- change the colorscheme to use terafox
|
||||
-- styles = {
|
||||
-- comments = "italic", -- change style of comments to be italic
|
||||
-- keywords = "bold", -- change style of keywords to be bold
|
||||
-- functions = "italic,bold" -- styles can be a comma separated list
|
||||
-- },
|
||||
-- inverse = {
|
||||
-- match_paren = true, -- inverse the highlighting of match_parens
|
||||
-- },
|
||||
-- colors = {
|
||||
-- red = "#FF0000", -- Override the red color for MAX POWER
|
||||
-- --bg_alt = "#000000",
|
||||
-- },
|
||||
-- hlgroups = {
|
||||
-- TSPunctDelimiter = { fg = "${red}" }, -- Override a highlight group with the color red
|
||||
-- LspCodeLens = { bg = "#000000", style = "italic" },
|
||||
-- }
|
||||
-- },
|
||||
-- }
|
||||
return { "catppuccin/nvim", name = "catppuccin", priority = 1000 }
|
||||
|
||||
|
||||
@@ -59,4 +59,5 @@ require("lazy").setup({
|
||||
"NMAC427/guess-indent.nvim",
|
||||
opts = { }
|
||||
},
|
||||
|
||||
})
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
-- Nightfox
|
||||
require('nightfox').load('terrafox')
|
||||
--require('nightfox').load('terrafox')
|
||||
vim.cmd.colorscheme "catppuccin"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user