this repo has no description
0
fork

Configure Feed

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

nvim: outline sidebar width

+20 -6
+20 -6
nvim/lua/plugins/lsp.lua
··· 10 10 local lspc = require("lspconfig") 11 11 local lspconfig_defaults = lspc.util.default_config 12 12 lspconfig_defaults.capabilities = 13 - vim.tbl_deep_extend("force", lspconfig_defaults.capabilities, require("cmp_nvim_lsp").default_capabilities()) 13 + vim.tbl_deep_extend("force", lspconfig_defaults.capabilities, require("cmp_nvim_lsp").default_capabilities()) 14 14 end, 15 15 }, 16 16 { ··· 63 63 -- Formatting handled by efm 64 64 javascript = { format = { enable = false } }, 65 65 typescript = { format = { enable = false } }, 66 - } 66 + }, 67 67 } 68 68 LangServers.eslint = { 69 69 single_file_support = false, ··· 74 74 if util.root_pattern("deno.json", "deno.jsonc")(bufn) then 75 75 on_dir(util.root_pattern("deno.json", "deno.jsonc")(bufn)) 76 76 end 77 - end 77 + end, 78 78 } 79 79 LangServers.yamlls = { 80 80 settings = { ··· 97 97 validate = { enable = true }, 98 98 format = { enable = false }, 99 99 }, 100 - } 100 + }, 101 101 } 102 102 LangServers.bashls = { 103 103 filetypes = { "sh", "bash", "zsh" }, 104 104 } 105 105 LangServers.efm = { 106 - filetypes = { "sh", "bash", "zsh", "javascript", "typescript", "javascriptreact", "typescriptreact", "json", "css", "scss", "html", "markdown" }, 106 + filetypes = { 107 + "sh", 108 + "bash", 109 + "zsh", 110 + "javascript", 111 + "typescript", 112 + "javascriptreact", 113 + "typescriptreact", 114 + "json", 115 + "css", 116 + "scss", 117 + "html", 118 + "markdown", 119 + }, 107 120 init_options = { 108 121 documentFormatting = true, 109 122 documentRangeFormatting = true, ··· 126 139 done 127 140 prettier --stdin-filepath "${INPUT}" 128 141 ']], 129 - formatStdin = true 142 + formatStdin = true, 130 143 } 131 144 132 145 return { ··· 205 218 focus = true, 206 219 win = { 207 220 wo = { foldlevel = 0 }, 221 + size = 50, 208 222 }, 209 223 format = "{kind_icon} {symbol.name} {pos}", 210 224 },