You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
369 B
Lua
18 lines
369 B
Lua
function packer_startup(use)
|
|
-- Packer can manage itself
|
|
use 'wbthomason/packer.nvim'
|
|
|
|
-- lsp manager
|
|
use 'neovim/nvim-lspconfig'
|
|
|
|
use {"akinsho/toggleterm.nvim", tag = "*", config = function()
|
|
require("toggleterm").setup()
|
|
end}
|
|
end
|
|
|
|
require('packer').startup(packer_startup)
|
|
|
|
require('lspconfig').rust_analyzer.setup({})
|
|
|
|
require("toggleterm").setup{}
|