diff options
| author | seth <[email protected]> | 2023-02-23 22:38:19 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-02-23 22:38:19 -0500 |
| commit | ce138fc1731b2077a8c87d555fb987652c283df4 (patch) | |
| tree | ddb02cd34b016525b74bb9a7a51ba78dbf5b678c /.config/nvim/lua/getchoo/init.lua | |
| parent | d02d00a4e565644bbf55554221a369ba67b7c086 (diff) | |
fix catppuccin + lightspeed -> leap
Diffstat (limited to '.config/nvim/lua/getchoo/init.lua')
| -rw-r--r-- | .config/nvim/lua/getchoo/init.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.config/nvim/lua/getchoo/init.lua b/.config/nvim/lua/getchoo/init.lua index 83233ea..beae5d6 100644 --- a/.config/nvim/lua/getchoo/init.lua +++ b/.config/nvim/lua/getchoo/init.lua @@ -9,11 +9,36 @@ local M = {} M.bufferline = { animation = true, auto_hide = true, + highlights = require("catppuccin.groups.integrations.bufferline").get(), icons = true, maximum_padding = 2, semantic_letters = true, } +local compile_path = vim.fn.stdpath("cache") .. "/catppuccin-nvim" +vim.fn.mkdir(compile_path, "p") +vim.opt.runtimepath:append(compile_path) + +M.catppuccin = { + compile_path = compile_path, + flavour = "mocha", -- mocha, macchiato, frappe, latte + integrations = { + barbar = true, + cmp = true, + gitsigns = true, + leap = true, + native_lsp = { + enabled = true, + }, + nvimtree = true, + treesitter_context = true, + treesitter = true, + telescope = true, + lsp_trouble = true, + }, + no_italic = true, +} + M.lualine = { options = { theme = "catppuccin", @@ -23,7 +48,10 @@ M.lualine = { M.tree = {} +require("catppuccin").setup(M.catppuccin) +vim.api.nvim_command("colorscheme catppuccin") require("bufferline").setup(M.bufferline) +require("leap").add_default_mappings() require("lualine").setup(M.lualine) require("nvim-tree").setup(M.tree) |
