Add rust tools to nvim
This commit is contained in:
@ -4,13 +4,15 @@ return require('packer').startup(function(use)
|
||||
-- Packer can manage itself
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Fuzzy Finding
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.0',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { {'nvim-lua/plenary.nvim'} }
|
||||
}
|
||||
|
||||
use { -- Theme inspired by Atom
|
||||
-- Color Scheme
|
||||
use {
|
||||
'navarasu/onedark.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
@ -18,11 +20,13 @@ return require('packer').startup(function(use)
|
||||
end
|
||||
}
|
||||
|
||||
-- Ease of use Plugins
|
||||
use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'})
|
||||
use('theprimeagen/harpoon')
|
||||
use('mbbill/undotree')
|
||||
use('tpope/vim-fugitive')
|
||||
|
||||
-- Bracket Autocompletion
|
||||
use {
|
||||
'windwp/nvim-autopairs',
|
||||
config = function() require('nvim-autopairs').setup {} end
|
||||
@ -51,6 +55,9 @@ return require('packer').startup(function(use)
|
||||
}
|
||||
}
|
||||
|
||||
-- Rust tools
|
||||
use 'simrat39/rust-tools.nvim'
|
||||
|
||||
-- Debugger
|
||||
use 'nvim-lua/plenary.nvim'
|
||||
use { 'rcarriga/nvim-dap-ui', requires = {'mfussenegger/nvim-dap'} }
|
||||
|
Reference in New Issue
Block a user