-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplug.vim
More file actions
67 lines (61 loc) · 1.98 KB
/
plug.vim
File metadata and controls
67 lines (61 loc) · 1.98 KB
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
if has("nvim")
let g:plug_home = stdpath('data') . '/plugged'
endif
call plug#begin()
Plug 'christoomey/vim-tmux-navigator'
if has("nvim")
Plug 'sheerun/vim-polyglot'
Plug 'neovim/nvim-lspconfig'
Plug 'ryanoasis/vim-devicons'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/nvim-cmp'
Plug 'tami5/lspsaga.nvim', { 'branch': 'nvim6.0' }
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'windwp/nvim-autopairs'
Plug 'windwp/nvim-ts-autotag'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'onsails/lspkind-nvim'
Plug 'saadparwaiz1/cmp_luasnip'
Plug 'L3MON4D3/LuaSnip'
Plug 'nvim-lualine/lualine.nvim'
Plug 'kyazdani42/nvim-web-devicons'
Plug 'akinsho/bufferline.nvim'
Plug 'numToStr/Comment.nvim'
Plug 'mfussenegger/nvim-dap'
" Plug 'preservim/nerdtree'
Plug 'NTBBloodbath/rest.nvim'
Plug 'nvim-telescope/telescope-dap.nvim'
Plug 'williamboman/nvim-lsp-installer'
Plug 'pantharshit00/vim-prisma'
Plug 'kyazdani42/nvim-tree.lua'
Plug 'norcalli/nvim-colorizer.lua'
Plug 'tribela/vim-transparent'
endif
" Themes "
Plug 'pineapplegiant/spaceduck', { 'branch': 'main' }
Plug 'felixaa/aura-neovim'
Plug 'NLKNguyen/papercolor-theme'
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'bluz71/vim-moonfly-colors'
Plug 'junegunn/seoul256.vim'
Plug 'arcticicestudio/nord-vim'
Plug 'sainnhe/everforest'
Plug 'ayu-theme/ayu-vim'
Plug 'AhmedAbdulrahman/vim-aylin'
Plug 'srcery-colors/srcery-vim'
Plug 'kyoz/purify', { 'rtp': 'vim' }
Plug 'challenger-deep-theme/vim', { 'as': 'challenger-deep' }
Plug 'sainnhe/sonokai'
Plug 'liuchengxu/space-vim-theme'
Plug 'haoyu953/pride.vim'
Plug 'preservim/vim-colors-pencil'
Plug 'morhetz/gruvbox'
Plug 'embark-theme/vim', { 'as': 'embark', 'branch': 'main' }
Plug '4513ECHO/vim-colors-hatsunemiku'
Plug 'bluz71/vim-nightfly-guicolors'
Plug 'mangeshrex/everblush.vim'
call plug#end()