Newer
Older
nvim-config / lua / plugins / vscode-modern.lua
@Marcus Bengtsson Marcus Bengtsson on 20 Feb 2024 291 bytes Initial commit
return {
  "gmr458/vscode_modern_theme.nvim",
  lazy = false,
  priority = 1000,
  config = function()
    require("vscode_modern").setup({
      cursorline = true,
      transparent_background = false,
      nvim_tree_darker = true,
    })
    vim.cmd.colorscheme("vscode_modern")
  end,
}