diff options
Diffstat (limited to 'nvim/lua/custom/plugins')
| -rw-r--r-- | nvim/lua/custom/plugins/theme.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nvim/lua/custom/plugins/theme.lua b/nvim/lua/custom/plugins/theme.lua new file mode 100644 index 0000000..46ac13a --- /dev/null +++ b/nvim/lua/custom/plugins/theme.lua @@ -0,0 +1,10 @@ +return { + { + 'doums/darcula', + priority = 1001, -- Make sure to load this before all the other start plugins. kickstart prio is 1000. + config = function() + -- Load the colorscheme here. + vim.cmd.colorscheme 'darcula' + end, + }, +} |