summaryrefslogtreecommitdiff
path: root/lua/plugins/ui.lua
diff options
context:
space:
mode:
authorbee <beebeeb5k@gmail.com>2026-05-05 22:37:10 +0530
committerbee <beebeeb5k@gmail.com>2026-05-05 22:37:10 +0530
commit9365a8e96827cbf7bc5adad6d29bcd05b4d761b2 (patch)
tree0998a5dcfc4517e4112a2c589e04ac0dbc1e011b /lua/plugins/ui.lua
parent0c50f17133b90c60735f1f51943f51f60372bdd3 (diff)
Migrate from nixcats to nix-wrapper-modules
Diffstat (limited to 'lua/plugins/ui.lua')
-rw-r--r--lua/plugins/ui.lua86
1 files changed, 0 insertions, 86 deletions
diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua
deleted file mode 100644
index b2094eb..0000000
--- a/lua/plugins/ui.lua
+++ /dev/null
@@ -1,86 +0,0 @@
-return {
- {
- "lualine.nvim",
- for_cats = "ui",
- event = { "DeferredUIEnter" },
- after = function()
- require("lualine").setup({
- options = {
- component_separators = { left = "|", right = "|" },
- section_separators = {},
- },
- sections = {
- lualine_a = {
- {
- "mode",
- fmt = function(mode)
- return ({
- NORMAL = "(。•ᴗ•。)",
- INSERT = "(づ。◕‿‿◕。)づ",
- VISUAL = "(≧◡≦)",
- ["V-LINE"] = "(≧▿≦)",
- ["V-BLOCK"] = "(☆ω☆)",
- COMMAND = "( ̄ω ̄)",
- REPLACE = "(;ω;)",
- TERMINAL = "(^▽^)",
- })[mode] or mode
- end,
- },
- },
- },
- })
- end,
- },
- {
- "hlchunk.nvim",
- for_cats = "ui",
- event = { "BufReadPre", "BufNewFile" },
- after = function()
- local ignored_filetypes = {
- gitcommit = true,
- oil = true,
- Neogitstatus = true,
- TelescopePrompt = true,
- NvimTree = true,
- help = true,
- nix = true,
- }
-
- require("hlchunk").setup({
- chunk = {
- enable = true,
- priority = 15,
- -- style = {
- -- vim.api.nvim_get_hl(0, { name = "IndentBlanklineIndent1" }),
- -- vim.api.nvim_get_hl(0, { name = "DiagnosticError" }),
- -- },
- use_treesitter = false,
- chars = {
- horizontal_line = "─",
- vertical_line = "│",
- left_top = "┌",
- left_bottom = "└",
- right_arrow = "─",
- },
- textobject = "",
- exclude_filetypes = ignored_filetypes,
- max_file_size = 1024 * 1024,
- error_sign = true,
- -- animation related
- duration = 200,
- delay = 300,
- },
- indent = {
- enable = true,
- priority = 10,
- style = { vim.api.nvim_get_hl(0, { name = "Whitespace" }) },
- use_treesitter = false,
- exclude_filetypes = ignored_filetypes,
- chars = { "│" },
- ahead_lines = 5,
- delay = 100,
- },
- })
- end,
- },
-}