summaryrefslogtreecommitdiff
path: root/lua/cshift
diff options
context:
space:
mode:
Diffstat (limited to 'lua/cshift')
-rw-r--r--lua/cshift/opt.lua1
-rw-r--r--lua/cshift/plugins/init.lua8
2 files changed, 8 insertions, 1 deletions
diff --git a/lua/cshift/opt.lua b/lua/cshift/opt.lua
index 880bbc4..1de61d9 100644
--- a/lua/cshift/opt.lua
+++ b/lua/cshift/opt.lua
@@ -4,4 +4,3 @@ vim.opt.relativenumber = true
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
-vim.cmd.colorscheme("slate")
diff --git a/lua/cshift/plugins/init.lua b/lua/cshift/plugins/init.lua
index 10f36f2..e85aff2 100644
--- a/lua/cshift/plugins/init.lua
+++ b/lua/cshift/plugins/init.lua
@@ -5,5 +5,13 @@ return {
"nvim-lua/plenary.nvim",
},
},
+
+ {
+ -- Colorscheme
+ "jacoborus/tender.vim",
+ config = function()
+ vim.cmd.colorscheme("tender")
+ end
+ },
}