- Configuration for Neovim.
- All Keybindings are combined in vim-which-key just like SpaceVim
- Lazy load all most of plugin, minimize startup time less than 85ms.
- You can customize configuration in ~/.config/nvim/init-custom.vim
- Configuration for Emacs.
- Haven't finished.
- A script to add support for 24 bit colour terminals
# https://github.com/tmux/tmux/issues/543
brew install reattach-to-user-namespace
# then edit your .tmux.conf
set -g default-shell $SHELL
set -g default-command "reattach-to-user-namespace -l ${SHELL}"
# In .vimrc or ~/.config/nvim/init.vim (I use Neovim):
set clipboard=unnamed
# reload tmux config
tmux source-file ~/.tmux.conf<Paste>