Corrections suite MAJ plugins
This commit is contained in:
@@ -32,43 +32,47 @@ vim.cmd([[
|
||||
-- ft = string or list, -- Specifies filetypes which load this plugin.
|
||||
-- run = string, function, or table, -- Specify operations to be run after successful installs/updates of a plugin
|
||||
return require('packer').startup(function(use)
|
||||
-- Packer can manage itself
|
||||
use 'wbthomason/packer.nvim'
|
||||
use 'tanvirtin/monokai.nvim'
|
||||
|
||||
-- LSP
|
||||
use { 'neovim/nvim-lspconfig' }
|
||||
use {
|
||||
"williamboman/mason.nvim",
|
||||
run = ":MasonUpdate" -- :MasonUpdate updates registry contents
|
||||
run = ":MasonUpdate"
|
||||
}
|
||||
use { 'williamboman/mason-lspconfig.nvim'}
|
||||
|
||||
use { 'neovim/nvim-lspconfig' }
|
||||
use { 'hrsh7th/nvim-cmp', config = [[require('config.nvim-cmp')]] }
|
||||
use { 'hrsh7th/cmp-nvim-lsp', after = 'nvim-cmp' }
|
||||
--use { 'hrsh7th/cmp-buffer', after = 'nvim-cmp' } -- buffer auto-completion
|
||||
use { 'hrsh7th/cmp-path', after = 'nvim-cmp' } -- path auto-completion
|
||||
use { 'hrsh7th/cmp-cmdline', after = 'nvim-cmp' } -- cmdline auto-completion
|
||||
|
||||
-- Complétion - UNE SEULE déclaration de chaque plugin
|
||||
use 'hrsh7th/nvim-cmp'
|
||||
use 'hrsh7th/cmp-nvim-lsp'
|
||||
use 'hrsh7th/cmp-path'
|
||||
use 'hrsh7th/cmp-cmdline'
|
||||
use 'L3MON4D3/LuaSnip'
|
||||
use 'saadparwaiz1/cmp_luasnip'
|
||||
|
||||
|
||||
-- Autres plugins
|
||||
use({
|
||||
"iamcco/markdown-preview.nvim",
|
||||
run = function() vim.fn["mkdp#util#install"]() end,
|
||||
})
|
||||
|
||||
-- File manager
|
||||
use {
|
||||
"luukvbaal/nnn.nvim",
|
||||
config = function() require("nnn").setup() end
|
||||
}
|
||||
|
||||
use { 'https://git.richoux.me/tfa/vim-log-highlighting', after = 'nvim-cmp' } -- cmdline auto-completion
|
||||
|
||||
use { 'https://git.plop.me/tfa/vim-log-highlighting' }
|
||||
use 'mzlogin/vim-markdown-toc'
|
||||
|
||||
-- Automatically set up your configuration after cloning packer.nvim
|
||||
-- Put this at the end after all plugins
|
||||
use 'dpelle/vim-LanguageTool'
|
||||
use {
|
||||
'hat0uma/csvview.nvim',
|
||||
config = function()
|
||||
require('csvview').setup({
|
||||
quote_char = '"',
|
||||
separator = ',',
|
||||
})
|
||||
end
|
||||
}
|
||||
|
||||
if packer_bootstrap then
|
||||
require('packer').sync()
|
||||
end
|
||||
end)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user