cleaning
This commit is contained in:
parent
1b6f9eda72
commit
a60a0709a9
3 changed files with 22 additions and 33 deletions
|
@ -32,13 +32,11 @@ ENV MASON_PKGS=" \
|
|||
css-lsp \
|
||||
cssmodules-language-server \
|
||||
dockerfile-language-server \
|
||||
eslint-lsp \
|
||||
html-lsp \
|
||||
json-lsp \
|
||||
marksman \
|
||||
jedi-language-server \
|
||||
ruff \
|
||||
sqlls \
|
||||
yaml-language-server \
|
||||
markdownlint \
|
||||
ansible-language-server \
|
||||
|
|
|
@ -16,9 +16,9 @@ require("lazy").setup({
|
|||
priority = 400
|
||||
},
|
||||
-- neovim lsp plugins and depencencies
|
||||
{
|
||||
"folke/lazydev.nvim",
|
||||
},
|
||||
--{
|
||||
--"folke/lazydev.nvim",
|
||||
--},
|
||||
{ 'hrsh7th/cmp-nvim-lsp' },
|
||||
{ 'hrsh7th/cmp-buffer' },
|
||||
{ 'hrsh7th/cmp-cmdline' },
|
||||
|
@ -81,17 +81,17 @@ require("lazy").setup({
|
|||
'lewis6991/gitsigns.nvim',
|
||||
opts = require('plugins.gitsigns').config
|
||||
},
|
||||
{
|
||||
'petertriho/nvim-scrollbar',
|
||||
opts = {}
|
||||
},
|
||||
--{
|
||||
--'petertriho/nvim-scrollbar',
|
||||
--opts = {}
|
||||
--},
|
||||
{
|
||||
'kevinhwang91/nvim-hlslens',
|
||||
opts = {},
|
||||
keys = require('plugins.hlslens').keys
|
||||
},
|
||||
{ 'L3MON4D3/LuaSnip', version = '*' },
|
||||
{ 'saadparwaiz1/cmp_luasnip' },
|
||||
--{ 'saadparwaiz1/cmp_luasnip' },
|
||||
{
|
||||
'akinsho/bufferline.nvim',
|
||||
version = '*',
|
||||
|
@ -125,18 +125,18 @@ require("lazy").setup({
|
|||
main = "ibl",
|
||||
init = require('plugins.indent-blankline').init
|
||||
},
|
||||
{ 'MunifTanjim/nui.nvim' },
|
||||
{
|
||||
'folke/noice.nvim',
|
||||
opts = require("plugins.noice").config,
|
||||
dependencies = {
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- OPTIONAL:
|
||||
-- `nvim-notify` is only needed, if you want to use the notification view.
|
||||
-- If not available, we use `mini` as the fallback
|
||||
--"rcarriga/nvim-notify", }
|
||||
}
|
||||
},
|
||||
--{ 'MunifTanjim/nui.nvim' },
|
||||
--{
|
||||
--'folke/noice.nvim',
|
||||
--opts = require("plugins.noice").config,
|
||||
--dependencies = {
|
||||
--"MunifTanjim/nui.nvim",
|
||||
---- OPTIONAL:
|
||||
---- `nvim-notify` is only needed, if you want to use the notification view.
|
||||
---- If not available, we use `mini` as the fallback
|
||||
----"rcarriga/nvim-notify", }
|
||||
--}
|
||||
--},
|
||||
{
|
||||
'MeanderingProgrammer/markdown.nvim',
|
||||
main = "render-markdown",
|
||||
|
@ -153,7 +153,7 @@ require("lazy").setup({
|
|||
{ 'RRethy/vim-illuminate' },
|
||||
--{ 'sheerun/vim-polyglot' }, -- not maintained
|
||||
{ 'nfnty/vim-nftables' },
|
||||
{ 'HiPhish/jinja.vim' },
|
||||
--{ 'HiPhish/jinja.vim' },
|
||||
|
||||
-- themes
|
||||
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
||||
|
@ -166,7 +166,7 @@ require("lazy").setup({
|
|||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
priority = 100
|
||||
},
|
||||
{ 'BurntSushi/ripgrep' },
|
||||
--{ 'BurntSushi/ripgrep' },
|
||||
|
||||
},
|
||||
{
|
||||
|
|
|
@ -132,10 +132,6 @@ return {
|
|||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
}
|
||||
require 'lspconfig'.eslint.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
}
|
||||
require 'lspconfig'.cssls.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
|
@ -164,11 +160,6 @@ return {
|
|||
},
|
||||
}
|
||||
|
||||
require 'lspconfig'.sqlls.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
}
|
||||
|
||||
require 'lspconfig'.yamlls.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue