- set up git credential helper in .gitconfig
[credential]
helper = /usr/share/git/credential/netrc/git-credential-netrc.perl
- add login configuration to .netrc
| " Roughly converts yasnippet format snippets to vsnip (vs code like) snippets | |
| " performs in-place substitutions. make sure not to use autopairs plugin. | |
| " | |
| " example: | |
| " | |
| " # -*- mode: snippet -*- | |
| " # name: equals | |
| " # key: eq | |
| " # -- | |
| " public boolean equals(${1:Class} other) { |
| " =========================================================================== | |
| " | |
| " GIST: snippet / buffer / lsp / snippet vs-code like autocompletion using | |
| " vim-vsnip and neovim lsp plugin. synchronous completion. sorting | |
| " is done by length and source priority. c-n/c-p cycles items, while | |
| " tab select/expands/jump-next placeholder. what's missing is showing | |
| " a popup preview | |
| " | |
| " date: 2020-12-06 22:34 | |
| " |