diff options
| author | William Hergès <william@herges.fr> | 2025-08-12 15:25:31 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-08-12 15:25:31 +0200 |
| commit | 3fa491d7a40304b27040cbd650ff23cca293e8b2 (patch) | |
| tree | 2212e26cdc1f3d313a6fc0a8f017a70a838e6527 /config/nvim/lua/colorscheme.lua | |
| parent | ab93bfa16d109a09d49e35e77e7fb2634f8bb0c1 (diff) | |
feat(config): nvim
Diffstat (limited to 'config/nvim/lua/colorscheme.lua')
| -rw-r--r-- | config/nvim/lua/colorscheme.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/nvim/lua/colorscheme.lua b/config/nvim/lua/colorscheme.lua new file mode 100644 index 0000000..f9f6ce6 --- /dev/null +++ b/config/nvim/lua/colorscheme.lua @@ -0,0 +1,7 @@ +local colorscheme = 'monokai_pro' + +local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) +if not is_ok then + vim.notify('colorscheme ' .. colorscheme .. ' not found!') + return +end |
