An open API service indexing awesome lists of open source software.

https://github.com/uri/vim


https://github.com/uri/vim

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

```bash
git clone git@github.com:uri/vim.git ~/.config/nvim

# If using legacy vim config path (not neovim's)
ln -s ~/.config/nvim ~/.vim
echo "lua require('init')" > ~/.vim/vimrc
```

If using NeoVim and tmux, there's also a problem when switching panes. The
following snippet will fix the problem:

```
infocmp $TERM | sed 's/kbs=^[hH]/kbs=\\177/' > $TERM.ti
tic $TERM.ti
```

Originally found https://github.com/neovim/neovim/issues/2048#issuecomment-78045837