Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
SpaceVim - A Modern Vim/NeoVim Configuration
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Installation
curl -sLf https://spacevim.org/install.sh | bash
# enable Python3 support
wajig install python3 python3-pip
pip3 install -U pynvim
Uninstallation
curl -sLf https://spacevim.org/install.sh | bash -s -- --uninstall …
Editing JupyterLab Notebooks Using Vim
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Vim Inside Jupyter/Lab Notebooks
Firenvim
Firenvim turns your browser into a NeoVim client which means that you can use it to interact with Jupyter/Lab notebooks using NeoVim.
jupyterlab-vim
Vim Keybindings Using IdeaVim in IntelliJ IDEA
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- Put the line
set surround
into your~/.ideavimrc
to make IdeaVim support surround.
Issues
yssb
,yss)
, etc. do not work well currently.
References
-
https://github.com/JetBrains/ideavim
-
https://youtrack.jetbrains …
Navigate Chrome Browser Like a Pro Using Vimium
** Things on this page are fragmentary and immature notes and thoughts of the author. Please read with your own judgement! **
Customize Key Mappings
-
Open Vimium Options.
-
Paste your customized key mappings into "Custom key mappings". Below is an example of my customized key mapping configuration.
map d removeTab map u …
Tips on Vim
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Vim Distributions
Reload File
:e!
https://unix.stackexchange.com/questions/149209/refresh-changed-content-of-file-opened-in-vim
Case Insensitive Search
/\cPatterToSearch
:set ignorecase
:set smartcase /copyright " Case insensitive /Copyright " Case sensitive /copyright\C " Case …