This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Installation directory | |
| DIR=$HOME/app | |
| NVIM_URL_LINUX="https://github.com/neovim/neovim/releases/download/stable/nvim.appimage" | |
| NVIM_URL_MACOS="https://github.com/neovim/neovim/releases/download/stable/nvim-macos.tar.gz" | |
| mkdir -p ${DIR} | |
| cd ${DIR} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax on | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'scrooloose/nerdtree' " file list | |
| Plug 'majutsushi/tagbar' " show tags in a bar (functions etc) for easy browsing | |
| Plug 'vim-airline/vim-airline' " make statusline awesome | |
| Plug 'vim-airline/vim-airline-themes' " themes for statusline | |
| Plug 'jonathanfilip/vim-lucius' " nice white colortheme | |
| Plug 'davidhalter/jedi-vim' " jedi for python |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Installation directory | |
| DIR=$HOME/app | |
| NVIM_URL_LINUX="https://github.com/neovim/neovim/releases/download/stable/nvim.appimage" | |
| NVIM_URL_MACOS="https://github.com/neovim/neovim/releases/download/stable/nvim-macos.tar.gz" | |
| mkdir -p ${DIR} | |
| cd ${DIR} |