this repo has no description
1return {
2 { "akinsho/bufferline.nvim", opts = {} },
3 {
4 "Bekaboo/dropbar.nvim",
5 -- optional, but required for fuzzy finder support
6 dependencies = {
7 "nvim-telescope/telescope-fzf-native.nvim",
8 build = "make",
9 },
10 config = function()
11 local dropbar_api = require("dropbar.api")
12 vim.keymap.set("n", "<Leader>;", dropbar_api.pick, { desc = "Pick symbols in winbar" })
13 vim.keymap.set("n", "[;", dropbar_api.goto_context_start, { desc = "Go to start of current context" })
14 vim.keymap.set("n", "];", dropbar_api.select_next_context, { desc = "Select next context" })
15 end,
16 },
17 {
18 "nvim-neo-tree/neo-tree.nvim",
19 branch = "v3.x",
20 dependencies = {
21 "nvim-lua/plenary.nvim",
22 "nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
23 "MunifTanjim/nui.nvim",
24 },
25 opts = {
26 use_libuv_file_watcher = true,
27 follow_current_file = { enabled = true },
28 filesystem = {
29 filtered_items = {
30 hide_dotfiles = false,
31 hide_gitignored = true,
32 },
33 window = {
34 mappings = {
35 ["/"] = "noop", -- Disable filtering, I like to search on my own
36 ["F"] = "fuzzy_finder",
37 ["H"] = "noop", -- Conflicts with prev buffer
38 ["I"] = "toggle_hidden",
39 },
40 },
41 },
42 sources = {
43 "filesystem",
44 "git_status",
45 "document_symbols",
46 },
47 },
48 },
49 {
50 "stevearc/aerial.nvim",
51 opts = {
52 -- default starts with treesitter, but I like lsp
53 backends = { "lsp", "markdown", "asciidoc", "man" },
54 filter_kind = false,
55 layout = {
56 max_width = { 40, 0.2 },
57 min_width = 30,
58 },
59 },
60 },
61 {
62 "nvim-telescope/telescope.nvim",
63 tag = "0.1.8",
64 dependencies = { "nvim-lua/plenary.nvim" },
65 opts = {},
66 },
67 {
68 "akinsho/toggleterm.nvim",
69 },
70 {
71 "junegunn/goyo.vim",
72 },
73 {
74 "folke/which-key.nvim",
75 opts = {},
76 },
77 {
78 'MeanderingProgrammer/render-markdown.nvim',
79 dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite
80 -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
81 -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
82 ---@module 'render-markdown'
83 ---@type render.md.UserConfig
84 opts = {
85 pipe_table = {
86 style = "normal",
87 },
88 },
89 }
90}