diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 13:54:13 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 13:54:13 +0100 |
| commit | fe68ddcece93b65052894e8d0a5417f8eab4d1cc (patch) | |
| tree | d9dfe202abe60bafbdd62bc89c434becb79178ff /lua/user | |
| parent | ebb229d5a1489dcfd1d39a6305950a4ed1b3cef1 (diff) | |
added tokyodark colourscheme and set it as default
Diffstat (limited to 'lua/user')
| -rw-r--r-- | lua/user/colorscheme.lua | 2 | ||||
| -rw-r--r-- | lua/user/plugins.lua | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lua/user/colorscheme.lua b/lua/user/colorscheme.lua index 8c73fd6..5e3ec3c 100644 --- a/lua/user/colorscheme.lua +++ b/lua/user/colorscheme.lua @@ -1,4 +1,4 @@ -local colorscheme = "default" +local colorscheme = "tokyodark" local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) if not status_ok then diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index ac3b28b..d6176a1 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -48,6 +48,8 @@ return packer.startup(function(use) -- Colorschemes use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out use "lunarvim/darkplus.nvim" + use 'tiagovla/tokyodark.nvim' + -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins |
