Use catppuccin colorscheme
This commit is contained in:
parent
406b83c051
commit
b13f15287d
2
init.lua
2
init.lua
|
@ -1,3 +1,3 @@
|
||||||
require("core.mappings")
|
require("core.mappings")
|
||||||
require("core.settings")
|
|
||||||
require("core.lazy")
|
require("core.lazy")
|
||||||
|
require("core.settings")
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"catppuccin": { "branch": "main", "commit": "a1439ad7c584efb3d0ce14ccb835967f030450fe" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "3f13f080434ac942b150679223d54f5ca91e0d52" },
|
"lazy.nvim": { "branch": "main", "commit": "3f13f080434ac942b150679223d54f5ca91e0d52" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" },
|
"plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" }
|
"telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" }
|
||||||
|
|
|
@ -4,3 +4,5 @@ vim.o.tabstop=2
|
||||||
vim.o.shiftwidth=2
|
vim.o.shiftwidth=2
|
||||||
-- insert spaces instead of TAB character
|
-- insert spaces instead of TAB character
|
||||||
vim.o.expandtab=true
|
vim.o.expandtab=true
|
||||||
|
|
||||||
|
vim.cmd.colorscheme "catppuccin-mocha"
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
return { "catppuccin/nvim", name = "catppuccin", priority = 1000 }
|
Loading…
Reference in New Issue