diff options
Diffstat (limited to 'lua/plugins/colorscheme.lua')
-rw-r--r-- | lua/plugins/colorscheme.lua | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua deleted file mode 100644 index 5f0654d..0000000 --- a/lua/plugins/colorscheme.lua +++ /dev/null @@ -1,9 +0,0 @@ --- Neovim colorscheme. - -local colorscheme = "default" - -local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) -if not status_ok then - vim.notify("colorscheme " .. colorscheme .. " not found!") - return -end |