summaryrefslogtreecommitdiff
path: root/nvim/lua/colorscheme.lua
diff options
context:
space:
mode:
authorZach Smith <zsmith@newhopechurch.tv>2025-06-30 09:52:52 -0500
committerZach Smith <zsmith@newhopechurch.tv>2025-06-30 09:52:52 -0500
commitc8691fe2bcc291875c9919c2c3742a0c0ca587da (patch)
treef546481bec7c5d6880f305cb87644935cf32e3a3 /nvim/lua/colorscheme.lua
parentf87ded6f168c156b3bc71a8c4733c5eeafeb311c (diff)
parent6c75a83e941500619b5499b5d4763c8dab2c93b6 (diff)
Merge branch 'master' into mac
Diffstat (limited to 'nvim/lua/colorscheme.lua')
-rw-r--r--nvim/lua/colorscheme.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/lua/colorscheme.lua b/nvim/lua/colorscheme.lua
new file mode 100644
index 0000000..66516fa
--- /dev/null
+++ b/nvim/lua/colorscheme.lua
@@ -0,0 +1,8 @@
+-- define your colorscheme here
+local colorscheme = 'badwolf'
+
+local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
+if not is_ok then
+ vim.notify('colorscheme ' .. colorscheme .. ' not found!')
+ return
+end