Eat Some LazyVim Snacks

How to install color scripts and hub? Hub can be install by using brew On MacOS you can install hub by using brew: brew install hub Color scripts can be installed by shell-color-scripts git clone https://gitlab.com/dwt1/shell-color-scripts.git cd shell-color-scripts sudo make install # optional for Removal sudo make uninstall # optional for zsh completion sudo cp completions/_colorscript /usr/share/zsh/site-functions # optional for fish shell completion sudo cp completions/colorscript.fish /usr/share/fish/vendor_completions.d

November 20, 2024 · 1 min · 67 words · SherlockOuO

Vim 相关技巧| Vim Tricks

Vim 相关技巧 收集一些常用的 Vim 相关技巧,包括插件、快捷键、命令等。(using lazyvim) Nice Motion f{char}: 移动到下一个 {char} 出现的位置, 类似于 t{char} F{char}: 移动到上一个 {char} 出现的位置, 类似于 T{char} ; 和 ,: 重复上一次的 f, F, t, T 命令 Plugins lualine: vscode like status line gitblame: show git blame history Keymaps 1. todo-comments keymaps |Key|Description|Mode| |st | Todo |n| |sT (not working)| Todo/Fix/Fixme |n| |xt (not working)| Todo (Trouble) |n| |xT | Todo/Fix/Fixme (Trouble) |n| |[t | Previous Todo Comment |n| |]t | Next Todo Comment |n| ...

November 15, 2024 · 1 min · 133 words · SherlockOuO