diff options
Diffstat (limited to 'lua/plugins/eyecandy')
-rw-r--r-- | lua/plugins/eyecandy/indent-blankline.lua | 22 | ||||
-rw-r--r-- | lua/plugins/eyecandy/themes.lua | 25 | ||||
-rw-r--r-- | lua/plugins/eyecandy/vim-illuminate.lua | 4 | ||||
-rw-r--r-- | lua/plugins/eyecandy/virt-column.lua | 7 |
4 files changed, 58 insertions, 0 deletions
diff --git a/lua/plugins/eyecandy/indent-blankline.lua b/lua/plugins/eyecandy/indent-blankline.lua new file mode 100644 index 0000000..8756757 --- /dev/null +++ b/lua/plugins/eyecandy/indent-blankline.lua @@ -0,0 +1,22 @@ +return { + "lukas-reineke/indent-blankline.nvim", + event = { "BufRead" }, + main = "ibl", + opts = { + indent = { + char = "▏", + tab_char = "▏", + }, + scope = { + enabled = true, + show_start = true, + show_end = true, + exclude = { + language = { + "help", + }, + }, + }, + }, + dependencies = { "nvim-treesitter" }, +} diff --git a/lua/plugins/eyecandy/themes.lua b/lua/plugins/eyecandy/themes.lua new file mode 100644 index 0000000..42e5d6c --- /dev/null +++ b/lua/plugins/eyecandy/themes.lua @@ -0,0 +1,25 @@ +return { + { + "catppuccin/nvim", + lazy = false, + priority = 1000, + name = "catppuccin", + config = function() + local catp = require("catppuccin") + catp.setup({ + flavour = "frappe", + integrations = { + indent_blankline = true, + which_key = true, + illuminate = true, + lsp_trouble = true, + navic = { + enabled = true, + custom_bg = "NONE", + }, + }, + }) + vim.api.nvim_command("colorscheme catppuccin") + end, + }, +} diff --git a/lua/plugins/eyecandy/vim-illuminate.lua b/lua/plugins/eyecandy/vim-illuminate.lua new file mode 100644 index 0000000..20b9bb2 --- /dev/null +++ b/lua/plugins/eyecandy/vim-illuminate.lua @@ -0,0 +1,4 @@ +return { + "RRethy/vim-illuminate", + event = { "BufRead" }, +} diff --git a/lua/plugins/eyecandy/virt-column.lua b/lua/plugins/eyecandy/virt-column.lua new file mode 100644 index 0000000..5259d7a --- /dev/null +++ b/lua/plugins/eyecandy/virt-column.lua @@ -0,0 +1,7 @@ +return { + "lukas-reineke/virt-column.nvim", + event = { "BufRead" }, + config = function() + require("virt-column").setup() + end, +} |