mirror of
https://github.com/softinio/nvim-config.git
synced 2025-09-03 08:06:41 -07:00
initial version
This commit is contained in:
commit
9a896746d1
4 changed files with 895 additions and 0 deletions
27
lua/plugins.lua
Normal file
27
lua/plugins.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
return function(use)
|
||||
use({'folke/trouble.nvim'})
|
||||
use({
|
||||
'folke/which-key.nvim',
|
||||
config = function()
|
||||
require('which-key').setup({})
|
||||
end
|
||||
})
|
||||
use({'windwp/nvim-autopairs'})
|
||||
use({'nvim-tree/nvim-web-devicons'})
|
||||
use({
|
||||
'nvim-tree/nvim-tree.lua',
|
||||
tag = 'nightly'
|
||||
})
|
||||
use({'ckipp01/stylua-nvim'})
|
||||
use({'gennaro-tedesco/nvim-jqx'})
|
||||
use({'lervag/vimtex'})
|
||||
use({
|
||||
'f3fora/nvim-texlabconfig',
|
||||
run = 'go build'
|
||||
})
|
||||
use({'sindrets/diffview.nvim'})
|
||||
use({'nvim-treesitter/playground'})
|
||||
use({ 'softinio/scaladex.nvim' })
|
||||
use({'TimUntersberger/neogit'})
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue