Commit b94e53a 1 parent 2fbc7bd commit b94e53a Copy full SHA for b94e53a
File tree 3 files changed +15
-12
lines changed
3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change
1
+ -- load themes config
2
+ require (" user.themes.github-nvim-theme" )
3
+ require (" user.themes.onedark" )
4
+ require (" user.themes.catppuccin" )
5
+
1
6
-- cursor color: #61AFEF
2
- -- local colorscheme = "catppuccin"
7
+ local colorscheme = " catppuccin"
3
8
-- local colorscheme = "darkplus"
4
- local colorscheme = " github_light"
9
+ -- local colorscheme = "github_light"
5
10
-- require "user.conf.github-nvim-theme"
6
11
7
12
local status_ok , _ = pcall (vim .cmd , " colorscheme " .. colorscheme )
@@ -10,8 +15,8 @@ if not status_ok then
10
15
return
11
16
end
12
17
13
- if colorscheme == " onedark" then
14
- require " user.themes.onedark"
15
- elseif colorscheme == " catppuccin" then
16
- require " user.themes.catppuccin"
17
- end
18
+ -- if colorscheme == "onedark" then
19
+ -- require "user.themes.onedark"
20
+ -- elseif colorscheme == "catppuccin" then
21
+ -- require "user.themes.catppuccin"
22
+ -- end
Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ return packer.startup(function(use)
221
221
-- use "navarasu/onedark.nvim"
222
222
use ({
223
223
" catppuccin/nvim" ,
224
- as = " catppuccin"
225
224
})
226
225
use {
227
226
" projekt0n/github-nvim-theme" ,
@@ -291,8 +290,6 @@ return packer.startup(function(use)
291
290
use " Pocco81/AutoSave.nvim"
292
291
use " djoshea/vim-autoread"
293
292
-- use "chipsenkbeil/distant.nvim"
294
-
295
-
296
293
297
294
-- Automatically set up your configuration after cloning packer.nvim
298
295
-- Put this at the end after all plugins
Original file line number Diff line number Diff line change 1
1
local status_ok , catppuccin = pcall (require , " catppuccin" )
2
2
if not status_ok then
3
+ vim .notify (" catppuccin not found" )
3
4
return
4
5
end
5
6
@@ -10,7 +11,7 @@ catppuccin.setup(
10
11
styles = { -- TODO: style setting doesn't work
11
12
comments = " underline" ,
12
13
functions = " bold" ,
13
- keywords = " NONE " ,
14
+ keywords = " italic " ,
14
15
strings = " underline" ,
15
16
variables = " NONE" ,
16
17
},
@@ -39,7 +40,7 @@ catppuccin.setup(
39
40
telescope = true ,
40
41
nvimtree = {
41
42
enabled = true ,
42
- show_root = false ,
43
+ show_root = true ,
43
44
transparent_panel = false ,
44
45
},
45
46
neotree = {
You can’t perform that action at this time.
0 commit comments