summaryrefslogtreecommitdiff
path: root/plugin/catppuccin.lua
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-29 22:37:49 -0400
committerGitHub <[email protected]>2024-10-30 02:37:49 +0000
commit310fdf8de53d98ddd3a56936c131186e25814f0f (patch)
treef4265ab11de2262bacb2498cdc4661420a2df278 /plugin/catppuccin.lua
parent7ed0a2b87684eb32009944bd9eb8d7eaa9af0462 (diff)
use lz.n (#69)
* remove bufferline & some cmp sources * factor things out of after/ folder This is bad practice or something * make sure ftdetect plugins aren't loaded multiple times * use lz.n * mini.pairs -> mini.surround * flake: cleanup checks * ftplugin: enforce spaces in nix files
Diffstat (limited to 'plugin/catppuccin.lua')
-rw-r--r--plugin/catppuccin.lua33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugin/catppuccin.lua b/plugin/catppuccin.lua
deleted file mode 100644
index 79b84ec..0000000
--- a/plugin/catppuccin.lua
+++ /dev/null
@@ -1,33 +0,0 @@
-if vim.g.did_load_catppuccin_plugin then
- return
-end
-vim.g.did_load_catppuccin_plugin = true
-
-local compile_path = vim.fn.stdpath("cache") .. "/catppuccin-nvim"
-vim.fn.mkdir(compile_path, "p")
-vim.opt.runtimepath:append(compile_path)
-
-require("catppuccin").setup({
- compile_path = compile_path,
- flavour = "mocha",
- integrations = {
- cmp = true,
- flash = true,
- gitsigns = true,
- indent_blankline = {
- enabled = true,
- },
- lsp_trouble = true,
- native_lsp = {
- enabled = true,
- },
- neotree = true,
- treesitter = true,
- telescope = true,
- which_key = true,
- },
-
- no_italic = true,
-})
-
-vim.cmd.colorscheme("catppuccin")