Thu, 11 Apr 2024 13:19:24 -0400
add .luarc.jsonc
local g = vim.g -- >> Viewdoc g.no_viewdoc_abbrev = 1 g.viewdoc_open = "topleft new" g.viewdoc_winwidth_max = 100 g.neo_tree_remove_legacy_commands = 1 return { { "powerman/vim-plugin-viewdoc", event = "VeryLazy" }, { "nvim-lualine/lualine.nvim", opts = { options = { theme = "auto", icons_enabled = false, section_separators = "", component_separators = "", }, sections = { lualine_a = { "mode" }, lualine_b = { "filename" }, lualine_c = { "diagnostics" }, lualine_x = { "encoding", "fileformat" }, lualine_y = { "filetype" }, lualine_z = { "progress", "location" }, }, tabline = { lualine_a = { { "buffers", mode = 4, show_filename_only = false } }, lualine_z = { "branch" }, }, extensions = { "quickfix" }, }, }, { "lukas-reineke/indent-blankline.nvim", main = "ibl", keys = { { "<leader>ig", "<cmd>IBLToggle<cr>" }, }, opts = { enabled = false, indent = { char = "│" }, whitespace = { remove_blankline_trail = true }, scope = { enabled = false }, }, }, { "echasnovski/mini.indentscope", event = "BufReadPre", opts = { symbol = "│", options = { try_as_border = true }, draw = { animation = function() return 2 end, }, }, config = function(_, opts) vim.api.nvim_create_autocmd("FileType", { pattern = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy", "mason" }, callback = function() vim.b.miniindentscope_disable = true end, }) require("mini.indentscope").setup(opts) end, }, { "nvim-neo-tree/neo-tree.nvim", branch = "v3.x", cmd = "Neotree", dependencies = { "nvim-lua/plenary.nvim", "MunifTanjim/nui.nvim", { "s1n7ax/nvim-window-picker", config = function(_, _) local theme = require("kanagawa.colors").setup().theme require("window-picker").setup({ use_winbar = "always", fg_color = theme.ui.fg_reverse, current_win_hl_color = theme.syn.constant, other_win_hl_color = theme.syn.fun, }) end, }, }, opts = { enable_git_status = false, window = { mappings = { ["<F2>"] = "close_window" } }, filesystem = { hijack_netrw_behavior = "disabled" }, default_component_configs = { icon = { folder_closed = "▷", folder_open = "▽", folder_empty = "¤", default = "•", }, }, }, }, }