-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
17 lines (15 loc) · 920 Bytes
/
Makefile
File metadata and controls
17 lines (15 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
APP_NAME := nvim
PKG_PATH := $(XDG_DATA_HOME)/$(APP_NAME)/site/pack/_/start
install:
git clone https://github.com/mickael-menu/zk-nvim.git ${PKG_PATH}/zk-nvim
git clone https://github.com/windwp/nvim-autopairs.git ${PKG_PATH}/nvim-autopairs
git clone https://github.com/neovim/nvim-lspconfig.git ${PKG_PATH}/nvim-lspconfig
git clone https://github.com/ledger/vim-ledger.git ${PKG_PATH}/vim-ledger
git clone https://github.com/hrsh7th/nvim-cmp.git ${PKG_PATH}/nvim-cmp
git clone https://github.com/L3MON4D3/LuaSnip.git ${PKG_PATH}/LuaSnip
git clone https://github.com/saadparwaiz1/cmp_luasnip.git ${PKG_PATH}/cmp_luasnip
git clone https://github.com/hrsh7th/cmp-nvim-lsp.git ${PKG_PATH}/cmp-nvim-lsp
git clone https://github.com/hrsh7th/cmp-path.git ${PKG_PATH}/cmp-path
git clone https://github.com/rafamadriz/friendly-snippets.git ${PKG_PATH}/friendly-snippets
clean:
rm -rf "$(XDG_DATA_HOME)/$(APP_NAME)"