We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694a219 commit dfa3b9cCopy full SHA for dfa3b9c
init.lua
@@ -874,7 +874,14 @@ require('lazy').setup({
874
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
875
'catppuccin/nvim',
876
priority = 1000, -- Make sure to load this before all the other start plugins.
877
- init = function()
+ config = function()
878
+ ---@diagnostic disable-next-line: missing-fields
879
+ require('tokyonight').setup {
880
+ styles = {
881
+ comments = { italic = false }, -- Disable italics in comments
882
+ },
883
+ }
884
+
885
-- Load the colorscheme here.
886
-- Like many other themes, this one has different styles, and you could load
887
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
0 commit comments