-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.vim
96 lines (75 loc) · 2.15 KB
/
plugins.vim
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
call plug#begin('~/.vim/plugged')
"****** Syntax Highlighters ******
Plug 'ekalinin/Dockerfile.vim'
Plug 'mustache/vim-mustache-handlebars'
Plug 'lumiliet/vim-twig'
Plug 'kchmck/vim-coffee-script'
Plug 'jparise/vim-graphql'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'yuezk/vim-js'
Plug 'HerringtonDarkholme/yats.vim'
Plug 'cakebaker/scss-syntax.vim'
Plug 'elzr/vim-json'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
"****** Other Plugins ******
" popes stuff
Plug 'tpope/vim-abolish'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-obsession'
Plug 'tpope/vim-dadbod'
Plug 'tpope/vim-dotenv'
" better surround
Plug 'machakann/vim-sandwich'
" nicer command bar
" Plug 'tjdevries/express_line.nvim'
" for copy/paste files and folders - easier than netrw
Plug 'justinmk/vim-dirvish'
" autopairs
Plug 'jiangmiao/auto-pairs'
" allows access to entire undo history in a tree format (not linear)
Plug 'simnalamburt/vim-mundo'
" close html tags
Plug 'alvan/vim-closetag'
" git plugins
Plug 'tpope/vim-fugitive', {'frozen': 1}
Plug 'tpope/vim-dispatch' "for async fugitive
Plug 'rbong/vim-flog'
Plug 'lewis6991/gitsigns.nvim'
" search
Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-vimspector.nvim'
Plug 'nvim-telescope/telescope-project.nvim'
Plug 'brooth/far.vim'
"completion/linting
Plug 'neovim/nvim-lspconfig'
Plug 'nvim-lua/completion-nvim'
Plug 'hrsh7th/vim-vsnip'
Plug 'nvim-lua/lsp-status.nvim'
Plug 'hrsh7th/vim-vsnip-integ'
Plug 'steelsojka/completion-buffers'
"statusline
Plug 'glepnir/galaxyline.nvim'
" themes
Plug 'christianchiarulli/nvcode-color-schemes.vim'
Plug 'morhetz/gruvbox'
Plug 'nanotech/jellybeans.vim'
Plug 'ghifarit53/tokyonight-vim'
Plug 'glepnir/zephyr-nvim'
"indent for neovim
Plug 'glepnir/indent-guides.nvim'
" show hex colours
Plug 'RRethy/vim-hexokinase', { 'do': 'make hexokinase' }
" icons
Plug 'kyazdani42/nvim-web-devicons'
" smooth scroll
Plug 'psliwka/vim-smoothie'
" terminal
Plug 'voldikss/vim-floaterm'
" debug
Plug 'puremourning/vimspector'
" start screen
Plug 'glepnir/dashboard-nvim'
call plug#end()