summaryrefslogtreecommitdiff
path: root/nvim/lua/colorscheme.lua
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2025-04-17 23:05:26 -0500
committerzachir <zachir@librem.one>2025-04-17 23:05:26 -0500
commit511945a793625d87340f04800cd1c5bdafc3b379 (patch)
treec316999e489212612ca2147944b10f2f9a33dda8 /nvim/lua/colorscheme.lua
parent2702c566c5a168965f2238a1b1d738b399543137 (diff)
parentc7373b980589d7a5ea795b0dfd750a01a83718bb (diff)
Merge branch 'master' into clacla
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