Update nvim config

main
Buddy Sandidge 3 months ago
parent 3f56da3e5e
commit a2f39569a9

@ -2,7 +2,7 @@
#{{- /* vim: set filetype=toml: */ -}}
[".local/share/nvim/lazy/lazy.nvim"]
type = "archive"
url = "https://github.com/folke/lazy.nvim/archive/refs/tags/v10.23.0.tar.gz"
url = "https://github.com/folke/lazy.nvim/archive/refs/tags/v11.14.1.tar.gz"
exact = true
stripComponents = 1
refreshPeriod = "2196h"

@ -1,3 +1,5 @@
require('core.config')
vim.opt.runtimepath:prepend(vim.fn.stdpath('data') .. '/lazy/lazy.nvim')
require('lazy').setup('plugins', {})
require('lazy').setup('plugins', {
version = "*",
})

@ -85,7 +85,7 @@ local function config()
cssls = {},
--{{ if lookPath "node" -}}
eslint = {},
tsserver = {},
ts_ls = {},
--{{- end }}
--{{ if lookPath "go" -}}
gopls = {},
@ -122,12 +122,18 @@ end
return {
'neovim/nvim-lspconfig',
name = 'lspconfig',
tag = 'v1.0.0',
config = config,
dependencies = {
{ 'williamboman/mason.nvim', tag = 'v1.*', opts = {} },
{ 'williamboman/mason-lspconfig.nvim', tag = 'v1.*' },
{ 'j-hui/fidget.nvim', tag = 'legacy', opts = {} },
{ 'folke/neodev.nvim', tag = 'v2.*', opts = {} },
{ 'folke/trouble.nvim', tag = 'v2.*' },
{ 'williamboman/mason.nvim', tag = 'v1.10.0', opts = {} },
{ 'williamboman/mason-lspconfig.nvim', tag = 'v1.31.0' },
{ 'j-hui/fidget.nvim', tag = 'legacy', opts = {} },
{ 'folke/trouble.nvim', tag = 'v3.6.0' },
-- { 'folke/lazydev.nvim',
-- tag = 'v1.8.0',
-- ft = "lua",
-- opts = {
-- }
-- },
},
}

@ -8,6 +8,6 @@ end
return {
'L3MON4D3/LuaSnip',
config = config,
tag = 'v2.*',
tag = 'v2.3.0',
dependencies = {},
}

Loading…
Cancel
Save