diff options
author | mhsn <mail@mhsn.net> | 2024-11-23 17:40:44 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2024-11-23 17:40:44 +0000 |
commit | c0ee49298161bccb75b9e23ed64fe80aacec2fd4 (patch) | |
tree | 7effe9b25db4f355f54828980a60b5f99bd260b8 /lua/plugins/colors.lua | |
download | nvim-c0ee49298161bccb75b9e23ed64fe80aacec2fd4.tar.gz nvim-c0ee49298161bccb75b9e23ed64fe80aacec2fd4.zip |
Initial commit
Diffstat (limited to 'lua/plugins/colors.lua')
-rw-r--r-- | lua/plugins/colors.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/plugins/colors.lua b/lua/plugins/colors.lua new file mode 100644 index 0000000..1c44296 --- /dev/null +++ b/lua/plugins/colors.lua @@ -0,0 +1,10 @@ +return { + { + "sainnhe/gruvbox-material", + lazy = false, + priority = 1000, + config = function() + vim.cmd([[colorscheme gruvbox-material]]) + end, + }, +} |