comfortable, but python not formatting

This commit is contained in:
Oluwatobi 2023-10-06 20:38:37 +01:00
parent f15af9b8be
commit fc4c1c2612
24 changed files with 754 additions and 548 deletions

25
lua/plugins/lsp.lua Normal file
View file

@ -0,0 +1,25 @@
return {
'VonHeikemen/lsp-zero.nvim',
branch = 'v1.x',
dependencies = {
-- LSP Support
{ 'neovim/nvim-lspconfig' },
{ 'williamboman/mason.nvim' },
{ 'williamboman/mason-lspconfig.nvim' },
-- Autocompletion
{ 'hrsh7th/nvim-cmp' },
{ 'hrsh7th/cmp-buffer' },
{ 'hrsh7th/cmp-path' },
{ 'saadparwaiz1/cmp_luasnip' },
{ 'hrsh7th/cmp-nvim-lsp' },
{ 'hrsh7th/cmp-nvim-lua' },
-- Snippets
{ 'L3MON4D3/LuaSnip' },
{ 'rafamadriz/friendly-snippets' },
},
-- Use the lazy option to lazy-load the plugin on events or commands
lazy = true,
}