mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
trying catppuccin color scheme
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
"Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" },
|
||||
"LuaSnip": { "branch": "master", "commit": "80a8528f084a97b624ae443a6f50ff8074ba486b" },
|
||||
"bufdelete.nvim": { "branch": "master", "commit": "f6bcea78afb3060b198125256f897040538bcb81" },
|
||||
"catppuccin": { "branch": "main", "commit": "045e3499d9ec8d84635fb08877ae44fd33f6a38d" },
|
||||
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
||||
"cmp-calc": { "branch": "main", "commit": "ce91d14d2e7a8b3f6ad86d85e34d41c1ae6268d9" },
|
||||
"cmp-cmdline": { "branch": "main", "commit": "8ee981b4a91f536f52add291594e89fb6645e451" },
|
||||
@@ -24,7 +25,6 @@
|
||||
"mason.nvim": { "branch": "main", "commit": "3b5068f0fc565f337d67a2d315d935f574848ee7" },
|
||||
"neo-tree.nvim": { "branch": "v3.x", "commit": "742db4e60c74e5fbcc596aaf9e7575e1342dfd09" },
|
||||
"neodev.nvim": { "branch": "main", "commit": "84e0290f5600e8b89c0dfcafc864f45496a53400" },
|
||||
"nightfox.nvim": { "branch": "main", "commit": "e352a32e0f54feb2550ebdab815ae8f7f26ed63b" },
|
||||
"noice.nvim": { "branch": "main", "commit": "bf67d70bd7265d075191e7812d8eb42b9791f737" },
|
||||
"nui.nvim": { "branch": "main", "commit": "cbd2668414331c10039278f558630ed19b93e69b" },
|
||||
"nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" },
|
||||
|
||||
@@ -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