Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
neovimconfig
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
codecraft
neovimconfig
Commits
93b7d037
Commit
93b7d037
authored
1 year ago
by
codecraft
Browse files
Options
Downloads
Patches
Plain Diff
Add Catpuccin Colorscheme
parent
380d87ae
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lua/codecraft/core/colorscheme.lua
+44
-0
44 additions, 0 deletions
lua/codecraft/core/colorscheme.lua
lua/codecraft/plugin-setup.lua
+1
-0
1 addition, 0 deletions
lua/codecraft/plugin-setup.lua
with
45 additions
and
0 deletions
lua/codecraft/core/colorscheme.lua
+
44
−
0
View file @
93b7d037
...
...
@@ -54,3 +54,47 @@ require('onedark').setup {
}
-- vim.cmd[[colorscheme onedark]]
require
(
"catppuccin"
).
setup
({
flavour
=
"mocha"
,
-- latte, frappe, macchiato, mocha
background
=
{
-- :h background
light
=
"latte"
,
dark
=
"mocha"
,
},
transparent_background
=
false
,
show_end_of_buffer
=
false
,
-- show the '~' characters after the end of buffers
term_colors
=
false
,
dim_inactive
=
{
enabled
=
false
,
shade
=
"dark"
,
percentage
=
0
.
15
,
},
no_italic
=
false
,
-- Force no italic
no_bold
=
false
,
-- Force no bold
styles
=
{
comments
=
{
"italic"
},
conditionals
=
{
"italic"
},
loops
=
{},
functions
=
{},
keywords
=
{},
strings
=
{},
variables
=
{},
numbers
=
{},
booleans
=
{},
properties
=
{},
types
=
{},
operators
=
{},
},
color_overrides
=
{},
custom_highlights
=
{},
integrations
=
{
cmp
=
true
,
gitsigns
=
true
,
nvimtree
=
true
,
telescope
=
true
,
notify
=
false
,
mini
=
false
,
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
},
})
-- vim.cmd[[colorscheme catppuccin]]
This diff is collapsed.
Click to expand it.
lua/codecraft/plugin-setup.lua
+
1
−
0
View file @
93b7d037
...
...
@@ -112,6 +112,7 @@ require('packer').startup(function(use)
use
'lewis6991/gitsigns.nvim'
use
'navarasu/onedark.nvim'
-- Theme inspired by Atom
use
{
"catppuccin/nvim"
,
as
=
"catppuccin"
}
use
'morhetz/gruvbox'
use
'folke/tokyonight.nvim'
use
'LunarVim/lunar.nvim'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment