diff --git a/lazy-lock.json b/lazy-lock.json index 89f502b..816789b 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -23,6 +23,7 @@ "mini.nvim": { "branch": "main", "commit": "73f2e7a596bbb4e6ae6728d3a4426221ffc9512d" }, "neo-tree.nvim": { "branch": "main", "commit": "8c75e8a2949cd6cd35525799200a8d34471ee9eb" }, "nui.nvim": { "branch": "main", "commit": "61574ce6e60c815b0a0c4b5655b8486ba58089a1" }, + "nvim": { "branch": "main", "commit": "4fd72a9ab64b393c2c22b168508fd244877fec96" }, "nvim-autopairs": { "branch": "master", "commit": "19606af7c039271d5aa96bceff101e7523af3136" }, "nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" }, "nvim-dap": { "branch": "master", "commit": "281a2e4cd1e7a17cea7ecb1745d84a8ab1249925" }, @@ -42,7 +43,6 @@ "telescope.nvim": { "branch": "0.1.x", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }, "todo-comments.nvim": { "branch": "main", "commit": "319c01b99b7a8c9ac2066bf0efd4d6ec68fef444" }, "toggleterm.nvim": { "branch": "main", "commit": "137d06fb103952a0fb567882bb8527e2f92d327d" }, - "tokyonight.nvim": { "branch": "main", "commit": "4b386e66a9599057587c30538d5e6192e3d1c181" }, "trouble.nvim": { "branch": "main", "commit": "6efc446226679fda0547c0fd6a7892fd5f5b15d8" }, "vim-sleuth": { "branch": "master", "commit": "1cc4557420f215d02c4d2645a748a816c220e99b" }, "which-key.nvim": { "branch": "main", "commit": "bfec3d6bc0a9b0b2cb11644642f78c2c3915eef0" } diff --git a/lua/plugins/theme.lua b/lua/plugins/theme.lua index 6333deb..489696f 100644 --- a/lua/plugins/theme.lua +++ b/lua/plugins/theme.lua @@ -1,10 +1,29 @@ return { { - 'folke/tokyonight.nvim', - priority = 1000, -- Make sure to load this before all the other start plugins. - init = function() - vim.cmd.colorscheme 'tokyonight-night' - vim.cmd.hi 'Comment gui=none' + 'catppuccin/nvim', + lazy = false, + priority = 1000, + config = function() + require('catppuccin').setup { + styles = { + -- comments = { 'italic' }, + functions = { 'bold' }, + }, + integrations = { + barbar = true, + cmp = true, + mason = true, + dashboard = true, + neotree = true, + dap = true, + dap_ui = true, + notify = true, + lsp_trouble = true, + which_key = true, + }, + } + + vim.cmd.colorscheme 'catppuccin-mocha' end, }, }