this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 41520a8ca39bdf730c8209ca1e080915f92dc480 62 lines 1.4 kB view raw
1return { 2 { "akinsho/bufferline.nvim", opts = {} }, 3 { 4 "nvim-neo-tree/neo-tree.nvim", 5 branch = "v3.x", 6 dependencies = { 7 "nvim-lua/plenary.nvim", 8 "nvim-tree/nvim-web-devicons", -- not strictly required, but recommended 9 "MunifTanjim/nui.nvim", 10 }, 11 opts = { 12 use_libuv_file_watcher = true, 13 follow_current_file = { enabled = true }, 14 filesystem = { 15 filtered_items = { 16 hide_dotfiles = false, 17 hide_gitignored = false, 18 }, 19 window = { 20 mappings = { 21 ["/"] = "noop", -- Disable filtering, I like to search on my own 22 ["F"] = "fuzzy_finder", -- Remap filtering to F 23 ["H"] = "noop", -- Conflicts with prev buffer 24 }, 25 }, 26 }, 27 sources = { 28 "filesystem", 29 "git_status", 30 "document_symbols", 31 }, 32 }, 33 }, 34 { 35 "stevearc/aerial.nvim", 36 opts = { 37 -- default starts with treesitter, but I like lsp 38 backends = { "lsp", "markdown", "asciidoc", "man" }, 39 filter_kind = false, 40 layout = { 41 max_width = { 40, 0.2 }, 42 min_width = 30, 43 }, 44 }, 45 }, 46 { 47 "nvim-telescope/telescope.nvim", 48 tag = "0.1.8", 49 dependencies = { "nvim-lua/plenary.nvim" }, 50 opts = {}, 51 }, 52 { 53 "akinsho/toggleterm.nvim", 54 }, 55 { 56 "junegunn/goyo.vim", 57 }, 58 { 59 "folke/which-key.nvim", 60 opts = {}, 61 }, 62}