diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-11 22:34:06 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-11 22:34:06 +0100 |
commit | 8aafe947f476462e0aae7d0f473bec0fbdcaaa60 (patch) | |
tree | fa6910e9ed35bd16f598381520020a46f8403e15 /lua/plugins/colorscheme.lua | |
parent | 7ab7a3cf61548c697db6547aaea02dc0aec47c45 (diff) |
Move colorscheme config to config
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 |