Skip to content

Instantly share code, notes, and snippets.

@eliohernanph
eliohernanph / install_neovim_python_csharp.sh
Last active October 14, 2019 00:15
Install neovim on Linux (and maybe OSX) as Python and C# IDE
#!/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}
@eliohernanph
eliohernanph / .vimrc
Last active February 3, 2020 19:09
vimrc for neovim with Python and C# completion
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
#!/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}