new plugins, from coq to cmp, fixes, xdebug, install python3 fixes

This commit is contained in:
2026-02-01 11:03:03 +05:00
parent e85cd46b0d
commit 059f61c5f2
33 changed files with 960 additions and 661 deletions

View File

@@ -2,20 +2,20 @@
local path = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not (vim.uv or vim.loop).fs_stat(path) then
local repository = 'https://github.com/folke/lazy.nvim.git'
local out = vim.fn.system({ 'git', 'clone', '--filter=blob:none', '--branch=stable', repository, path })
local repository = 'https://github.com/folke/lazy.nvim.git'
local out = vim.fn.system({ 'git', 'clone', '--filter=blob:none', '--branch=stable', repository, path })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ 'Failed to clone lazy.nvim:\n', 'ErrorMsg' },
{ out, 'WarningMsg' },
{ '\nPress any key to exit...' },
}, true, {})
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ 'Failed to clone lazy.nvim:\n', 'ErrorMsg' },
{ out, 'WarningMsg' },
{ '\nPress any key to exit...' },
}, true, {})
vim.fn.getchar()
vim.fn.getchar()
os.exit(1)
end
os.exit(1)
end
end
vim.opt.rtp:prepend(path)
@@ -23,18 +23,18 @@ vim.opt.rtp:prepend(path)
-- Setup lazy.nvim
require('lazy').setup({
-- Import plugins
spec = {
{ import = 'plugins' },
},
spec = {
{ import = 'plugins' },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- install = {
-- colorscheme = { 'flexoki' }
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- install = {
-- colorscheme = { 'flexoki' }
-- },
-- Automatically check for plugin updates
checker = {
enabled = true
-- Automatically check for plugin updates
checker = {
enabled = true
},
})