diff options
Diffstat (limited to 'dot-config/nvim')
| -rw-r--r-- | dot-config/nvim/nvim-pack-lock.json | 8 | ||||
| -rw-r--r-- | dot-config/nvim/plugin/colorscheme.lua | 16 |
2 files changed, 9 insertions, 15 deletions
diff --git a/dot-config/nvim/nvim-pack-lock.json b/dot-config/nvim/nvim-pack-lock.json index ddcaa63..231189b 100644 --- a/dot-config/nvim/nvim-pack-lock.json +++ b/dot-config/nvim/nvim-pack-lock.json @@ -8,6 +8,10 @@ "rev": "b1d2b0dc146cb9260209da4d7ab754adb0a2653d", "src": "https://github.com/ibhagwan/fzf-lua" }, + "github-nvim-theme": { + "rev": "c106c9472154d6b2c74b74565616b877ae8ed31d", + "src": "https://github.com/projekt0n/github-nvim-theme" + }, "gitsigns.nvim": { "rev": "5813e4878748805f1518cee7abb50fd7205a3a48", "src": "https://github.com/lewis6991/gitsigns.nvim" @@ -24,10 +28,6 @@ "rev": "57e5a8addb8c71fb063ee4acda466c7cf6ad2800", "src": "https://github.com/mason-org/mason.nvim" }, - "modus-themes.nvim": { - "rev": "c57c2c5", - "src": "https://github.com/miikanissi/modus-themes.nvim" - }, "nui.nvim": { "rev": "de74099", "src": "https://github.com/MunifTanjim/nui.nvim" diff --git a/dot-config/nvim/plugin/colorscheme.lua b/dot-config/nvim/plugin/colorscheme.lua index 18c2ac0..8eb524b 100644 --- a/dot-config/nvim/plugin/colorscheme.lua +++ b/dot-config/nvim/plugin/colorscheme.lua @@ -1,17 +1,11 @@ vim.pack.add({ - "https://github.com/miikanissi/modus-themes.nvim", + "https://github.com/projekt0n/github-nvim-theme", }) -require("modus-themes").setup({ - transparent = true, - line_nr_column_background = false, - sign_column_background = false, - styles = { - comments = { italic = false }, - keywords = { italic = false }, - functions = {}, - variables = {}, +require("github-theme").setup({ + options = { + transparent = true, }, }) -vim.cmd("colorscheme modus_vivendi") +vim.cmd("colorscheme github_dark_default") |
