-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup_nvim.sh
78 lines (52 loc) · 2.07 KB
/
backup_nvim.sh
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
#! /bin/bash
CLONE_DIR="$HOME/.local/share/nvim/site/pack/packer/"
#CLONE_DIR="$HOME/fico/tmp" #dir for testing purposes
TMP_DIR="$HOME/start"
mkdir -p $CLONE_DIR
mkdir $TMP_DIR
cd $TMP_DIR
pwd
###############################################################################
######################## git plugins to clone #################################
###############################################################################
git clone --depth=1 https://github.com/L3MON4D3/LuaSnip
#LuaSnip/
git clone --depth=1 https://github.com/VonHeikemen/lsp-zero.nvim.git
#lsp-zero.nvim/
git clone --depth=1 https://github.com/shaunsingh/nord.nvim.git
#nord.nvim/
git clone --depth=1 https://github.com/neovim/nvim-lspconfig
#nvim-lspconfig/
git clone --depth=1 https://github.com/APZelos/blamer.nvim.git
#blamer.nvim/
git clone --depth=1 https://github.com/nvim-lualine/lualine.nvim.git
#lualine.nvim/
git clone --depth=1 https://github.com/AlexvZyl/nordic.nvim.git
#nordic.nvim/
git clone --depth=1 https://github.com/nvim-treesitter/nvim-treesitter.git
#nvim-treesitter/
git clone --depth=1 https://github.com/nvim-lua/plenary.nvim.git
#plenary.nvim/
git clone --depth=1 https://github.com/hrsh7th/cmp-nvim-lsp.git
#cmp-nvim-lsp/
git clone --depth=1 https://github.com/williamboman/mason-lspconfig.nvim.git
#mason-lspconfig.nvim/
git clone --depth=1 https://github.com/hrsh7th/nvim-cmp.git
#nvim-cmp/
git clone --depth=1 https://github.com/nvim-tree/nvim-web-devicons.git
#nvim-web-devicons/
git clone --depth=1 https://github.com/nvim-telescope/telescope.nvim.git
#telescope.nvim/
git clone --depth=1 https://github.com/ThePrimeagen/harpoon.git
#harpoon/
git clone --depth=1 https://github.com/williamboman/mason.nvim.git
#mason.nvim/
git clone --depth=1 https://github.com/terrortylor/nvim-comment.git
#nvim-comment/
git clone --depth=1 https://github.com/navarasu/onedark.nvim.git
#onedark.nvim/
###############################################################################
###############################################################################
cd $HOME
pwd
mv $TMP_DIR $CLONE_DIR