diff --git a/user/modules/nvim/lazy-lock.json b/user/modules/nvim/lazy-lock.json index 8fa1bf1..69082e1 100644 --- a/user/modules/nvim/lazy-lock.json +++ b/user/modules/nvim/lazy-lock.json @@ -24,6 +24,7 @@ "mini.indentscope": { "branch": "main", "commit": "cbc07203ca8faae952ca373c1f6cc5881ce97af0" }, "mini.pairs": { "branch": "main", "commit": "6f6bd7ed5757b40bc29c73dac0d743e4e6978124" }, "mini.surround": { "branch": "main", "commit": "68ce058ef9716d7d955b79363845d2dd003d6500" }, + "monokai-pro.nvim": { "branch": "master", "commit": "b49795aa8a0cb6596660dae31ac10a43eff2d33b" }, "neo-tree.nvim": { "branch": "v3.x", "commit": "0b9a83e6dc47513a81fd9086440d5638683f4f17" }, "neoconf.nvim": { "branch": "main", "commit": "00dcf2b81c45de1768b4171faa16729f0888cfb8" }, "neodev.nvim": { "branch": "main", "commit": "d617d9eb27e73e701e446874c6ea2cb528719260" }, diff --git a/user/modules/nvim/lua/plugins/colors.lua b/user/modules/nvim/lua/plugins/colors.lua new file mode 100644 index 0000000..c0bd750 --- /dev/null +++ b/user/modules/nvim/lua/plugins/colors.lua @@ -0,0 +1,11 @@ +return { + { + "loctvl842/monokai-pro.nvim", + + config = function() + require("monokai-pro").setup() + + vim.cmd([[colorscheme monokai-pro]]) + end, + }, +}