diff --git a/init.lua b/init.lua index 13727202e80..a67ca699ed8 100644 --- a/init.lua +++ b/init.lua @@ -688,6 +688,9 @@ require('lazy').setup({ format_on_save = function(bufnr) -- You can specify filetypes to autoformat on save here: local enabled_filetypes = { + go = true, + lua = true, + rust = true, -- lua = true, -- python = true, } @@ -815,15 +818,18 @@ require('lazy').setup({ config = function() ---@diagnostic disable-next-line: missing-fields require('tokyonight').setup { + transparent = true, styles = { - comments = { italic = false }, -- Disable italics in comments + comments = { italic = true }, -- Disable italics in comments + sidebars = 'transparent', + floats = 'transparent', }, } -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'tokyonight' end, },