mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
43 lines
1.1 KiB
Lua
43 lines
1.1 KiB
Lua
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
|
|
|
|
return require('packer').startup(function(use)
|
|
-- Packer can manage itself
|
|
use 'wbthomason/packer.nvim'
|
|
|
|
-- Colors
|
|
use ('dracula/vim')
|
|
|
|
-- IDE
|
|
use('nvim-lua/plenary.nvim')
|
|
use("nvim-treesitter/nvim-treesitter", {
|
|
run = ":TSUpdate"
|
|
})
|
|
use ('nvim-telescope/telescope.nvim')
|
|
use ('nvim-telescope/telescope-project.nvim')
|
|
|
|
use ('ThePrimeagen/harpoon')
|
|
use ('mbbill/undotree')
|
|
use ('kdheepak/lazygit.nvim')
|
|
|
|
use({ "iamcco/markdown-preview.nvim",
|
|
run = "cd app && npm install",
|
|
setup = function() vim.g.mkdp_filetypes = { "markdown" } end,
|
|
ft = { "markdown" },
|
|
})
|
|
-- LSP
|
|
use ('neovim/nvim-lspconfig')
|
|
use ('hrsh7th/cmp-nvim-lsp')
|
|
use ('hrsh7th/cmp-buffer')
|
|
use ('hrsh7th/cmp-path')
|
|
use ('hrsh7th/cmp-cmdline')
|
|
use ('hrsh7th/nvim-cmp')
|
|
use ('L3MON4D3/LuaSnip')
|
|
use ('saadparwaiz1/cmp_luasnip')
|
|
use ('alker0/chezmoi.vim')
|
|
use ('nathangrigg/vim-beancount')
|
|
use ('vimwiki/vimwiki')
|
|
use ('folke/which-key.nvim')
|
|
use ('hkupty/iron.nvim')
|
|
|
|
end)
|