this repo has no description
0
fork

Configure Feed

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

lsp progress

+30 -10
+2 -1
nvim/lazy-lock.json
··· 13 13 "img-clip.nvim": { "branch": "main", "commit": "28a32d811d69042f4fa5c3d5fa35571df2bc1623" }, 14 14 "lazy.nvim": { "branch": "main", "commit": "b1134ab82ee4279e31f7ddf7e34b2a99eb9b7bc9" }, 15 15 "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, 16 + "neoconf.nvim": { "branch": "main", "commit": "c32fd1d852e45cc03ed0729a2f5bec040ff9f065" }, 16 17 "nui.nvim": { "branch": "main", "commit": "b58e2bfda5cea347c9d58b7f11cf3012c7b3953f" }, 17 18 "nvim-cmp": { "branch": "main", "commit": "f17d9b4394027ff4442b298398dfcaab97e40c4f" }, 18 19 "nvim-comment": { "branch": "main", "commit": "e9ac16ab056695cad6461173693069ec070d2b23" }, ··· 21 22 "nvim-treesitter": { "branch": "master", "commit": "dfd3207ed43a0c572c13acc02bf9d7dc270f4030" }, 22 23 "nvim-web-devicons": { "branch": "master", "commit": "19d257cf889f79f4022163c3fbb5e08639077bd8" }, 23 24 "plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" }, 24 - "render-markdown.nvim": { "branch": "main", "commit": "fc05fb7c56795f191b6800799a2ec6ea325ba715" }, 25 + "render-markdown.nvim": { "branch": "main", "commit": "4ec7a51856e9324b2b758afe73b64dd05396a9a8" }, 25 26 "rose-pine": { "branch": "main", "commit": "07a887a7bef4aacea8c7caebaf8cbf808cdc7a8e" }, 26 27 "telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }, 27 28 "toggleterm.nvim": { "branch": "main", "commit": "5969229c0352ff1ed7f6e24aba9c6554e1842939" },
+1 -1
nvim/lua/plugins/cmp-nvim-lsp.lua
··· 1 - return { "hrsh7th/cmp-nvim-lsp" } 1 + return { "hrsh7th/cmp-nvim-lsp", opts = {} }
+4
nvim/lua/plugins/neoconf.lua
··· 1 + return { 2 + "folke/neoconf.nvim", 3 + opts = {}, 4 + }
+1 -1
nvim/lua/plugins/nvim-cmp.lua
··· 1 - return { "hrsh7th/nvim-cmp" } 1 + return { "hrsh7th/nvim-cmp", opts = {} }
+20 -7
nvim/lua/plugins/nvim-lspconfig.lua
··· 1 1 return { 2 2 "neovim/nvim-lspconfig", 3 + dependencies = { 4 + "folke/neoconf.nvim", 5 + }, 3 6 config = function() 4 - local lspconfig_defaults = require("lspconfig").util.default_config 7 + local lspc = require("lspconfig") 8 + local lspconfig_defaults = lspc.util.default_config 5 9 lspconfig_defaults.capabilities = vim.tbl_deep_extend( 6 10 "force", 7 11 lspconfig_defaults.capabilities, 8 12 require("cmp_nvim_lsp").default_capabilities() 9 13 ) 10 14 11 - require("lspconfig").vtsls.setup({}) 12 - require("lspconfig").eslint.setup({}) 13 - require("lspconfig").gitlab_ci_ls.setup({}) 14 - require("lspconfig").spectral.setup({}) 15 - require("lspconfig").yamlls.setup({}) 16 - require("lspconfig").lua_ls.setup({}) 15 + lspc.vtsls.setup({}) 16 + lspc.eslint.setup({}) 17 + lspc.prismals.setup({}) 18 + 19 + lspc.denols.setup({ 20 + settings = { deno = { enabled = false } }, 21 + }) 22 + 23 + lspc.gitlab_ci_ls.setup({}) 24 + 25 + lspc.spectral.setup({}) 26 + 27 + lspc.yamlls.setup({}) 28 + 29 + lspc.lua_ls.setup({}) 17 30 end, 18 31 }
+2
nvim/neoconf.json
··· 1 + { 2 + }