blob: d1d671fd15d319d784b7676cba4362f462ba933b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
-- sourced from https://github.com/arnvald/viml-to-lua/blob/main/lua/plugins.lua
return require('packer').startup(function()
use 'wbthomason/packer.nvim'
use 'morhetz/gruvbox'
use 'karb94/neoscroll.nvim'
use 'edkolev/tmuxline.vim'
use 'romainl/vim-cool'
-- common
use 'tpope/vim-fugitive' -- Git commands
use {
'nvim-lualine/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
}
use 'rhysd/vim-grammarous' -- grammar check
use 'andymass/vim-matchup' -- matching parens and more
use 'rhysd/git-messenger.vim'
use 'luochen1990/rainbow'
use 'RRethy/vim-illuminate'
-- better quickfix buffer
use {'kevinhwang91/nvim-bqf',
ft = 'qf',
config = function()
require("bqf").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
}
end
}
-- general dev
use 'neovim/nvim-lspconfig'
use 'kabouzeid/nvim-lspinstall'
use({
"glepnir/lspsaga.nvim",
branch = "main",
config = function()
require("lspsaga").setup({})
end,
requires = {
{"nvim-tree/nvim-web-devicons"},
--Please make sure you install markdown and markdown_inline parser
{"nvim-treesitter/nvim-treesitter"}
}
})
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-buffer'
use 'hrsh7th/cmp-nvim-lua'
use 'hrsh7th/cmp-nvim-lsp'
use 'hrsh7th/cmp-nvim-lsp-signature-help'
use "hrsh7th/cmp-path"
use 'L3MON4D3/LuaSnip'
use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' }
use 'scrooloose/nerdcommenter' -- commenting shortcuts
use {
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
}
end
}
-- search
use { 'nvim-telescope/telescope.nvim', requires = {{'nvim-lua/popup.nvim'}, {'nvim-lua/plenary.nvim'}} }
use 'tpope/vim-eunuch' -- wrappers UNIX commands
use 'tpope/vim-surround' -- surround characters shortcuts
use 'tpope/vim-vinegar' -- file browser
use 'kyazdani42/nvim-web-devicons' -- icons when searching
-- go
use 'fatih/vim-go'
-- rust
use 'rust-lang/rust.vim'
use 'simrat39/rust-tools.nvim'
-- debugging
use 'nvim-lua/plenary.nvim'
use 'mfussenegger/nvim-dap'
end)
|