From abf1273892d609812a49e3ecf33f38f3ef5c65b3 Mon Sep 17 00:00:00 2001 From: Joshua Nussbaum <67082011+joshuanussbaum@users.noreply.github.com> Date: Sat, 7 Dec 2024 08:59:42 -0600 Subject: [PATCH] add snacks and catppuccin theme --- init.lua | 6 ++++-- lua/custom/plugins/snacks-nvim.lua | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 lua/custom/plugins/snacks-nvim.lua diff --git a/init.lua b/init.lua index d1b77d4b..e967b5a0 100644 --- a/init.lua +++ b/init.lua @@ -758,13 +758,15 @@ require('lazy').setup({ -- change the command in the config to whatever the name of that colorscheme is. -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - 'folke/tokyonight.nvim', + -- 'folke/tokyonight.nvim', + 'catppuccin/nvim', + name = 'catppuccin', priority = 1000, -- Make sure to load this before all the other start plugins. init = function() -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-storm' + vim.cmd.colorscheme 'catppuccin-mocha' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' diff --git a/lua/custom/plugins/snacks-nvim.lua b/lua/custom/plugins/snacks-nvim.lua new file mode 100644 index 00000000..52fb445f --- /dev/null +++ b/lua/custom/plugins/snacks-nvim.lua @@ -0,0 +1,16 @@ +return { + 'folke/snacks.nvim', + priority = 1000, + lazy = false, + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + bigfile = { enabled = true }, + dashboard = { enabled = true }, + notifier = { enabled = true }, + quickfile = { enabled = true }, + statuscolumn = { enabled = true }, + words = { enabled = true }, + }, +}