This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [file-run] | |
| command:python=python3 "$(VIM_FILENAME)" | |
| command:cpp=g++ "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" -std=c++20 -O2 -I .&& "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| command:javascript=node "$(VIM_FILENAME)" | |
| command:typescript=tsc "$(VIM_FILENAME)" --target ES6&& node "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| command:c=gcc "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" && "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| command:sh=sh "$(VIM_FILENAME)" | |
| command:asm=asm $(VIM_FILENOEXT) | |
| command:cangjie=cjc -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" "$(VIM_FILENAME)" && "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " modified: 2026/05/03 | |
| " map leader as , | |
| let mapleader="," | |
| " for the normal mode of chinese input | |
| set encoding=utf-8 | |
| set fileencodings=ucs-bom,utf-8,cp936,gb18030 |