summaryrefslogtreecommitdiff
path: root/lua/plugins/config/colorscheme.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-12 21:22:47 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-12 21:22:47 +0100
commit7cf73775036c3424dd5e2a85effe3883cf0b0ca8 (patch)
tree61d7584b44d0c8074676bb2a1cfba00dc3a6babc /lua/plugins/config/colorscheme.lua
parentb42618906aad70a735ea9272403e5e2657230fcc (diff)
Refactor the file structure
Diffstat (limited to 'lua/plugins/config/colorscheme.lua')
-rw-r--r--lua/plugins/config/colorscheme.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/lua/plugins/config/colorscheme.lua b/lua/plugins/config/colorscheme.lua
deleted file mode 100644
index 5f0654d..0000000
--- a/lua/plugins/config/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