i use arch btw
0
fork

Configure Feed

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

Always add lua plugins to library path and add yamlls

+28 -9
+7 -7
nvim/.config/nvim/lazy-lock.json
··· 10 10 "lualine.nvim": { "branch": "master", "commit": "45e27ca739c7be6c49e5496d14fcf45a303c3a63" }, 11 11 "luasnip": { "branch": "master", "commit": "ea7d7ea510c641c4f15042becd27f35b3e5b3c2b" }, 12 12 "mason-lspconfig.nvim": { "branch": "main", "commit": "20fd7f50f34b59031a7c3bbc2c207f4f60037628" }, 13 - "mason.nvim": { "branch": "main", "commit": "ee6a7f179ebf8aa9da9d53b1cf1b57d292ea0182" }, 13 + "mason.nvim": { "branch": "main", "commit": "d66c60e17dd6fd8165194b1d14d21f7eb2c1697a" }, 14 14 "neodev.nvim": { "branch": "main", "commit": "f0e574687aa51c513017155f003e8e8950ec6ff4" }, 15 15 "neoscroll.nvim": { "branch": "master", "commit": "4bc0212e9f2a7bc7fe7a6bceb15b33e39f0f41fb" }, 16 16 "noice.nvim": { "branch": "main", "commit": "74c2902146b080035beb19944baf6f014a954720" }, ··· 18 18 "nrpattern.nvim": { "branch": "master", "commit": "f862ce687761078ef3155688151c55f69d28453e" }, 19 19 "nui.nvim": { "branch": "main", "commit": "c8de23342caf8d50b15d6b28368d36a56a69d76f" }, 20 20 "nvim-cmp": { "branch": "main", "commit": "5dce1b778b85c717f6614e3f4da45e9f19f54435" }, 21 - "nvim-lspconfig": { "branch": "master", "commit": "d177ad277a638f262edb73c75ffe33e377b95dc5" }, 22 - "nvim-notify": { "branch": "master", "commit": "4a0da37b881c764a237f6ea07ca99fc4eb70e343" }, 21 + "nvim-lspconfig": { "branch": "master", "commit": "0d24eeafb5b531c7fac610a3508207f33c76ce6d" }, 22 + "nvim-notify": { "branch": "master", "commit": "94859430020f5cf32a1b97ddd9e596fed9db7981" }, 23 23 "nvim-pqf": { "branch": "main", "commit": "f0ab5ea8388af8e6c1a7f7cdc07292b07c02662d" }, 24 24 "nvim-scrollbar": { "branch": "main", "commit": "35f99d559041c7c0eff3a41f9093581ceea534e8" }, 25 25 "nvim-surround": { "branch": "main", "commit": "1c2ef599abeeb98e40706830bcd27e90e259367a" }, 26 - "nvim-treesitter": { "branch": "master", "commit": "d5f57cd4794d8f0a541f140229e5764e2f41d63a" }, 26 + "nvim-treesitter": { "branch": "master", "commit": "15d327fe6324d8269451131ec34ad4f2a8ef1e01" }, 27 27 "nvim-treesitter-endwise": { "branch": "master", "commit": "9298b3ac8fd6d0d8f9e321194c6d3fd37e417cf9" }, 28 28 "nvim-treesitter-textobjects": { "branch": "master", "commit": "bd103502252027434ec42f628d2dbf54821d4ce6" }, 29 29 "nvim-ts-autotag": { "branch": "main", "commit": "6be1192965df35f94b8ea6d323354f7dc7a557e4" }, 30 - "nvim-web-devicons": { "branch": "master", "commit": "ecdeb4e2a4af34fc873bbfbf1f4c4e447e632255" }, 30 + "nvim-web-devicons": { "branch": "master", "commit": "925e2aa30dc9fe9332060199c19f132ec0f3d493" }, 31 31 "plenary.nvim": { "branch": "master", "commit": "0232372b906f275f76ac42029eba25eaf95e76b9" }, 32 32 "qf_helper.nvim": { "branch": "master", "commit": "39480c33624c78a596a33adce86bee019725b687" }, 33 - "schemastore.nvim": { "branch": "main", "commit": "c0874b9eb5e9aecd27e122ebfe7490516ac02bd3" }, 33 + "schemastore.nvim": { "branch": "main", "commit": "1709539a95c37dd2ed3a85b9b424f45d74775236" }, 34 34 "tabout.nvim": { "branch": "master", "commit": "0d275c8d25f32457e67b5c66d6ae43f26a61bce5" }, 35 35 "telescope.nvim": { "branch": "master", "commit": "54930e1abfc94409e1bb9266e752ef8379008592" }, 36 36 "treesj": { "branch": "main", "commit": "bff8c32b826e188fa558e94c7c93ac17a8ef0365" }, 37 37 "trouble.nvim": { "branch": "main", "commit": "3f85d8ed30e97ceeddbbcf80224245d347053711" }, 38 - "ultimate-autopair.nvim": { "branch": "v0.6", "commit": "c1dc5dc7386bb354b1bf26f2ebaba4aeacb12c95" }, 38 + "ultimate-autopair.nvim": { "branch": "v0.6", "commit": "f4870608244b8821462489cb9b86ac573d92179a" }, 39 39 "which-key.nvim": { "branch": "main", "commit": "7ccf476ebe0445a741b64e36c78a682c1c6118b7" } 40 40 }
+21 -2
nvim/.config/nvim/lua/plugins.lua
··· 183 183 184 184 require('mason').setup({}) 185 185 require('mason-lspconfig').setup({ 186 - ensure_installed = { 'lua_ls' }, 186 + ensure_installed = { 'lua_ls', 'efm', 'clangd', 'jsonls', 'yamlls', 187 + 'jsonnet_ls' }, 187 188 handlers = { 188 189 lsp_zero.default_setup, 189 190 lua_ls = function() ··· 199 200 }, 200 201 }) 201 202 end, 203 + yamlls = function() 204 + require('lspconfig').yamlls.setup({ 205 + settings = { 206 + yaml = { 207 + schemaStore = { 208 + enable = false, 209 + url = '', 210 + }, 211 + schemas = require('schemastore').yaml.schemas, 212 + }, 213 + }, 214 + }) 215 + end, 202 216 }, 203 217 }) 204 218 end, ··· 206 220 207 221 { 208 222 'folke/neodev.nvim', 209 - config = true, 223 + opts = { 224 + override = function(root_dir, library) 225 + library.enabled = true 226 + library.plugins = true 227 + end, 228 + }, 210 229 }, 211 230 212 231 {