File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -897,14 +897,18 @@ require('lazy').setup({
897
897
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
898
898
' folke/tokyonight.nvim' ,
899
899
priority = 1000 , -- Make sure to load this before all the other start plugins.
900
- init = function ()
900
+ config = function ()
901
+ --- @diagnostic disable-next-line : missing-fields
902
+ require (' tokyonight' ).setup {
903
+ styles = {
904
+ comments = { italic = false }, -- Disable italics in comments
905
+ },
906
+ }
907
+
901
908
-- Load the colorscheme here.
902
909
-- Like many other themes, this one has different styles, and you could load
903
910
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
904
911
vim .cmd .colorscheme ' tokyonight-night'
905
-
906
- -- You can configure highlights by doing something like:
907
- vim .cmd .hi ' Comment gui=none'
908
912
end ,
909
913
},
910
914
You can’t perform that action at this time.
0 commit comments