summaryrefslogtreecommitdiff
path: root/nvim/lua/colorscheme.lua
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2025-06-30 22:29:41 -0500
committerzachir <zachir@librem.one>2025-06-30 22:29:41 -0500
commitcd5c43d1c22297a4da818b46e946b6a8e9287842 (patch)
treeb3e6b6dba62dd90cfba99f1c039bf5b4cb77b6ea /nvim/lua/colorscheme.lua
parentda43b9a0634849720840c5fcd1f3cd4663087d85 (diff)
parent64187650dcb08fc08a219412024ab454613ac596 (diff)
Merge branch 'master' into cas
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