https://github.com/uri/vim
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/uri/vim
- Owner: uri
- Created: 2015-03-27T04:16:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-14T20:48:43.000Z (over 2 years ago)
- Last Synced: 2025-05-07T06:08:31.000Z (about 1 year ago)
- Language: Lua
- Size: 985 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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