summaryrefslogtreecommitdiffstats
path: root/nvim/lua/custom
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2025-03-16 00:34:21 +0100
committerChristoph Schlosser <christoph@linux.com>2025-03-16 00:35:19 +0100
commit2900c522cb08918b241aa7c938fe2163a99abc15 (patch)
treedd41c8a5330be31b205a8b430f0866d14441daca /nvim/lua/custom
parentc244ab8c2f8e42ad24ab3aa592c87e9d60182b5f (diff)
downloaddots-2900c522cb08918b241aa7c938fe2163a99abc15.tar.gz
nvim: Remove tokyonight colorscheme and replace it with darcula
Diffstat (limited to 'nvim/lua/custom')
-rw-r--r--nvim/lua/custom/plugins/theme.lua10
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,
+ },
+}