Skip to content

Commit

Permalink
updated catppuccin settings
Browse files Browse the repository at this point in the history
  • Loading branch information
codevbus committed Apr 4, 2024
1 parent f131ff1 commit debc745
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nvim/.config/nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"fidget.nvim": { "branch": "main", "commit": "933db4596e4bab1b09b6d48a10e21819e4cc458f" },
"gitsigns.nvim": { "branch": "main", "commit": "b45ff86f5618d1421a88c12d4feb286b80a1e2d3" },
"lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" },
"lualine.nvim": { "branch": "master", "commit": "b5e8bb642138f787a2c1c5aedc2a78cb2cebbd67" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "9dfcf2036c223920826140f0151d929a43f9eceb" },
"mason-tool-installer.nvim": { "branch": "main", "commit": "1212fb6082b7177dde17ea65e429e027835aeb40" },
"mason.nvim": { "branch": "main", "commit": "751b1fcbf3d3b783fcf8d48865264a9bcd8f9b10" },
Expand All @@ -26,7 +25,6 @@
"telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },

Check warning on line 25 in nvim/.config/nvim/lazy-lock.json

View workflow job for this annotation

GitHub Actions / TruffleHog

Found unverified Github result 🐷🔑
"telescope.nvim": { "branch": "0.1.x", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" },
"todo-comments.nvim": { "branch": "main", "commit": "a7e39ae9e74f2c8c6dc4eea6d40c3971ae84752d" },
"tokyonight.nvim": { "branch": "main", "commit": "9bf9ec53d5e87b025e2404069b71e7ebdc3a13e5" },
"vim-sleuth": { "branch": "master", "commit": "1cc4557420f215d02c4d2645a748a816c220e99b" },
"vim-tmux-navigator": { "branch": "master", "commit": "38b1d0402c4600543281dc85b3f51884205674b6" },
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
Expand Down
20 changes: 20 additions & 0 deletions nvim/.config/nvim/lua/custom/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,28 @@ return {
},
{
'catppuccin/nvim',
tag = 'stable',
name = 'catppuccin',
priority = 1000,
config = function()
require('catppuccin').setup {
background = { -- :h background
light = 'latte',
dark = 'mocha',
},
term_colors = true,
integrations = {
telescope = true,
mason = true,
notify = true,
mini = {
enabled = true,
indentscope_color = '',
},
},
}
vim.cmd.colorscheme 'catppuccin'
end,
},

'christoomey/vim-tmux-navigator',
Expand Down

0 comments on commit debc745

Please sign in to comment.