blob: e0a4122f0e051e6b58db366f6f6f0a1724a6e618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
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"
use "vim-airline/vim-airline"
use "lukas-reineke/indent-blankline.nvim"
-- Coc
-- use {"neoclide/coc.nvim", branch = "release"}
use { "/home/hampus/Projects/coc.nvim", run = "yarn install --frozen-lockfile" }
-- Syntax
use "tikhomirov/vim-glsl"
-- Navigation
use "christoomey/vim-tmux-navigator"
-- Fzf
use "junegunn/fzf"
use "junegunn/fzf.vim"
-- Formatting
use "rhysd/vim-clang-format"
-- Markdown
use "preservim/vim-markdown"
use {"iamcco/markdown-preview.nvim", run = "cd app && yarn install"}
-- Formatting
use "alx741/vim-rustfmt"
use {
"pwntester/octo.nvim",
commit = "c6b008434d684e746a40e443876b646b521cebbf",
requires = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
"nvim-tree/nvim-web-devicons",
},
config = function ()
require "octo".setup()
end
}
use "PhilRunninger/nerdtree-visual-selection"
end)
|