summaryrefslogtreecommitdiff
path: root/nvim/lua/colorscheme.lua
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-04-25 19:24:18 -0500
committerZachIR <zachir@librem.one>2025-04-25 19:24:18 -0500
commitbb8562117c6cb324c60e79847dfd50583e73f52a (patch)
treef3c9d92cf427aa712c7fb893256b525b72c45b44 /nvim/lua/colorscheme.lua
parente6e3c16bc3492d77063a1b1356ebb44d0e7e4ed5 (diff)
parentb372316155d6ba4ee14f8fc63905d1368717b3cb (diff)
Merge branch 'master' into car
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