diff options
author | zachir <zachir@librem.one> | 2025-04-17 22:59:36 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-04-17 23:02:30 -0500 |
commit | 12fb9ecc242867b03626d1c52e5e84799ab330c8 (patch) | |
tree | db5efcfa7eeeee25fbabea32de9656ee80a0469d /nvim/lua/colorscheme.lua | |
parent | 5fb45814cbb6ab38adbff7c952339c1da3580731 (diff) |
Redo nvim to use init.lua
Diffstat (limited to 'nvim/lua/colorscheme.lua')
-rw-r--r-- | nvim/lua/colorscheme.lua | 8 |
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 |