summaryrefslogtreecommitdiff
path: root/plugins/catppuccin.lua
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-01 06:42:48 -0400
committerseth <[email protected]>2023-11-01 06:42:48 -0400
commit09004f4517eba8f57d37897e34f6ba56ad3653f1 (patch)
tree6ae19b13a2694fe852caa6c77665af24ea59fe9e /plugins/catppuccin.lua
parentca59ebcf3dd17153b90a0ceca86af14db941ac3c (diff)
stop using neovim.nix
i had small, but annoying issues here and i don't care for lazy loading much tbh
Diffstat (limited to 'plugins/catppuccin.lua')
-rw-r--r--plugins/catppuccin.lua28
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/catppuccin.lua b/plugins/catppuccin.lua
deleted file mode 100644
index 2679b48..0000000
--- a/plugins/catppuccin.lua
+++ /dev/null
@@ -1,28 +0,0 @@
-return function()
- require("catppuccin").setup({
- compile_path = compile_path,
- flavour = "mocha", -- mocha, macchiato, frappe, latte
- integrations = {
- cmp = true,
- flash = true,
- gitsigns = true,
- indent_blankline = {
- enabled = true,
- },
- lsp_trouble = true,
- native_lsp = {
- enabled = true,
- },
- neotree = true,
- notify = true,
- treesitter_context = true,
- treesitter = true,
- telescope = true,
- which_key = true,
- },
-
- no_italic = true,
- })
-
- vim.cmd.colorscheme("catppuccin")
-end