return require("packer").startup(function(use) use "wbthomason/packer.nvim" use "tpope/vim-fugitive" -- NERDtree use "preservim/nerdtree" use "ryanoasis/vim-devicons" use "tiagofumo/vim-nerdtree-syntax-highlight" -- Style use { "https://git.hampusmat.com/ayu-vim", commit = "256ec8f56ca0beb7c2d3b727f6c7f4806ab30c15" } use "vim-airline/vim-airline" use { "lukas-reineke/indent-blankline.nvim", tag = "v3.5.3", config = function() require("ibl").setup { indent = { char = '¦' } } end } -- Coc use { "neoclide/coc.nvim", -- Commit where inlay hints work without Neovim 0.10+ commit = "3dc6153a85ed0f185abec1deb972a66af3fbbfb4", run = "npm install" } -- Syntax & formatting use "tikhomirov/vim-glsl" use "rhysd/vim-clang-format" use "rust-lang/rust.vim" -- Navigation use "christoomey/vim-tmux-navigator" -- Fzf use "junegunn/fzf" use "junegunn/fzf.vim" -- Markdown use "preservim/vim-markdown" use {"iamcco/markdown-preview.nvim", run = "cd app && yarn install"} end)