summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-06-03 19:46:30 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-06-03 19:46:30 +0100
commit4286c610562bb4dd9d288b47d60bdaf28a70438d (patch)
treefa9d1bdb0e3e1a2907ddc7c684be7803367c2a65 /lua/user/plugins.lua
parentb6022fe7948825d5452bebc780cb4f919eb9cf12 (diff)
Minor fixes
Diffstat (limited to 'lua/user/plugins.lua')
-rw-r--r--lua/user/plugins.lua26
1 files changed, 11 insertions, 15 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua
index 7f2cb92..6008cd7 100644
--- a/lua/user/plugins.lua
+++ b/lua/user/plugins.lua
@@ -44,22 +44,18 @@ return packer.startup(function(use)
use "wbthomason/packer.nvim" -- Have packer manage itself
use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim
use "nvim-lua/plenary.nvim" -- Useful lua functions used ny lots of plugins
- use "windwp/nvim-autopairs" -- Autopairs, integrates with both cmp and treesitter
- use "numToStr/Comment.nvim" -- Easily comment stuff
- use "akinsho/bufferline.nvim"
- use "moll/vim-bbye"
- use "nvim-lualine/lualine.nvim"
use "akinsho/toggleterm.nvim"
- use "ahmedkhalf/project.nvim"
- use "lewis6991/impatient.nvim"
- use "lukas-reineke/indent-blankline.nvim"
- use 'goolord/alpha-nvim'
+ use "akinsho/bufferline.nvim"
use "antoinemadec/FixCursorHold.nvim" -- This is needed to fix lsp doc highlight
+ use "folke/which-key.nvim"
use 'kyazdani42/nvim-web-devicons'
use 'kyazdani42/nvim-tree.lua'
- use "goolord/alpha-nvim"
- use "antoinemadec/FixCursorHold.nvim" -- This is needed to fix lsp doc highlight
- use "folke/which-key.nvim"
+ use "lewis6991/impatient.nvim"
+ use "lukas-reineke/indent-blankline.nvim"
+ use "moll/vim-bbye"
+ use "numToStr/Comment.nvim" -- Easily comment stuff
+ use "nvim-lualine/lualine.nvim"
+ use "windwp/nvim-autopairs" -- Autopairs, integrates with both cmp and treesitter
-- Colorschemes
use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out
@@ -72,19 +68,19 @@ return packer.startup(function(use)
use "hrsh7th/cmp-buffer" -- buffer completions
use "hrsh7th/cmp-path" -- path completions
use "hrsh7th/cmp-cmdline" -- cmdline completions
- use "saadparwaiz1/cmp_luasnip" -- snippet completions
use "hrsh7th/cmp-nvim-lsp"
use "hrsh7th/cmp-nvim-lua"
+ use "saadparwaiz1/cmp_luasnip" -- snippet completions
-- snippets
use "L3MON4D3/LuaSnip" --snippet engine
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
-- LSP
+ use "jose-elias-alvarez/null-ls.nvim" -- for formatters and linters
+ use "tamago324/nlsp-settings.nvim" -- language server settings defined in json for
use "neovim/nvim-lspconfig" -- enable LSP
use "williamboman/nvim-lsp-installer" -- simple to use language server installer
- use "tamago324/nlsp-settings.nvim" -- language server settings defined in json for
- use "jose-elias-alvarez/null-ls.nvim" -- for formatters and linters
-- Telescope
use "nvim-telescope/telescope.nvim"