cleaning
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 11m28s
Build neovim image / build-neovim-arm64 (push) Successful in 38m12s
Build neovim image / update-images-manifest (push) Successful in 17s

This commit is contained in:
Maciej Lebiest 2025-05-06 21:20:41 +02:00
parent 1b6f9eda72
commit a60a0709a9
3 changed files with 22 additions and 33 deletions

View file

@ -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 \

View file

@ -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' },
},
{

View file

@ -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,