diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-03-16 00:34:21 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-03-16 00:35:19 +0100 |
| commit | 2900c522cb08918b241aa7c938fe2163a99abc15 (patch) | |
| tree | dd41c8a5330be31b205a8b430f0866d14441daca | |
| parent | c244ab8c2f8e42ad24ab3aa592c87e9d60182b5f (diff) | |
| download | dots-2900c522cb08918b241aa7c938fe2163a99abc15.tar.gz | |
nvim: Remove tokyonight colorscheme and replace it with darcula
| -rw-r--r-- | nvim/lazy-lock.json | 2 | ||||
| -rw-r--r-- | nvim/lua/custom/plugins/theme.lua | 10 | ||||
| -rw-r--r-- | nvim/lua/lazy-plugins.lua | 2 |
3 files changed, 11 insertions, 3 deletions
diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 8b61c3c..5a508c1 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -5,6 +5,7 @@ "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, "cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" }, "conform.nvim": { "branch": "master", "commit": "db8a4a9edb217067b1d7a2e0362c74bfe9cc944d" }, + "darcula": { "branch": "master", "commit": "faf8dbab27bee0f27e4f1c3ca7e9695af9b1242b" }, "fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" }, "gitsigns.nvim": { "branch": "main", "commit": "011dc6718bcebdf92a5336bb0da79189c3afe621" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, @@ -23,7 +24,6 @@ "telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" }, "telescope.nvim": { "branch": "0.1.x", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }, "todo-comments.nvim": { "branch": "main", "commit": "304a8d204ee787d2544d8bc23cd38d2f929e7cc5" }, - "tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" }, "vim-sleuth": { "branch": "master", "commit": "be69bff86754b1aa5adcbb527d7fcd1635a84080" }, "which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" } } 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, + }, +} diff --git a/nvim/lua/lazy-plugins.lua b/nvim/lua/lazy-plugins.lua index dd5b318..5a56b59 100644 --- a/nvim/lua/lazy-plugins.lua +++ b/nvim/lua/lazy-plugins.lua @@ -35,8 +35,6 @@ require('lazy').setup({ require 'kickstart/plugins/cmp', - require 'kickstart/plugins/tokyonight', - require 'kickstart/plugins/todo-comments', require 'kickstart/plugins/mini', |