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 @@ -886,14 +886,18 @@ require('lazy').setup({
886
886
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
887
887
' folke/tokyonight.nvim' ,
888
888
priority = 1000 , -- Make sure to load this before all the other start plugins.
889
- init = function ()
889
+ config = function ()
890
+ --- @diagnostic disable-next-line : missing-fields
891
+ require (' tokyonight' ).setup {
892
+ styles = {
893
+ comments = { italic = false }, -- Disable italics in comments
894
+ },
895
+ }
896
+
890
897
-- Load the colorscheme here.
891
898
-- Like many other themes, this one has different styles, and you could load
892
899
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
893
900
vim .cmd .colorscheme ' tokyonight-night'
894
-
895
- -- You can configure highlights by doing something like:
896
- vim .cmd .hi ' Comment gui=none'
897
901
end ,
898
902
},
899
903
You can’t perform that action at this time.
0 commit comments