-- Install theme plugins vim.pack.add { { src = 'https://github.com/rebelot/kanagawa.nvim', name = 'kanagawa' }, -- { src = 'https://github.com/rose-pine/neovim', name = 'rose-pine' }, -- { src = 'https://github.com/nickkadutskyi/jb.nvim', name = 'jetbrains-theme' }, } -- Initialize and customize themes require('kanagawa').setup { -- Compile colorscheme for fast startup times. -- Note: When changing the theme, make sure to run `:KanagawaCompile` afterwards! compile = true, -- Dim inactive windows dimInactive = true, -- Customize colors colors = { theme = { all = { ui = { -- Disable background of gutter (line numbers etc.) bg_gutter = 'none', }, }, }, }, } --require('rose-pine').setup {} --require('jb').setup {} -- Enable theme vim.cmd.colorscheme('kanagawa') --vim.cmd.colorscheme('rose-pine') --vim.cmd.colorscheme('jb')