https://github.com/donglua/vimconf
https://github.com/donglua/vimconf
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/donglua/vimconf
- Owner: donglua
- License: mit
- Created: 2016-11-18T02:21:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-21T13:58:20.000Z (almost 9 years ago)
- Last Synced: 2025-01-27T22:16:09.125Z (over 1 year ago)
- Language: Vim script
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vim 配置 & 使用备忘
## [Vundle.vim](https://github.com/VundleVim/Vundle.vim)
```shell
$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
```
Launch ```vim``` and run ```:PluginInstall```
## Ctags
* Install
```sudo apt-get install exuberant-ctags```
or
```brew install ctags```
* 生成 Ctags ```ctags -R```
* 光标移到函数名或结构体名上,按下```ctrl + ]```键,将会列出相关的定义处,选择相应的数字,自动中转到相应的定义处。想要返回时,按```ctrl + t```,自动跳回原先位置
## [taglist.vim](https://github.com/vim-scripts/taglist.vim)
You can now use the ":TlistToggle" command to open/close the taglist
window. You can use the ":help taglist" command to get more information
about using the taglist plugin.
## [vim-tasks](https://github.com/irrationalistic/vim-tasks)
* \ n - new task below
* \ N - new task above
* \ d - toggle current task complete
* \ x - toggle current task cancelled
* \ a - send completed tasks to the archive
## fatih/vim-go
```:GoInstallBinaries```
## [YouCompleteMe](http://valloric.github.io/YouCompleteMe/)
> 自动补全
## [yonchu/accelerated-smooth-scroll](https://github.com/yonchu/accelerated-smooth-scroll)
> 平滑滚动 ```/, /```
## [scrooloose/nerdtree](https://github.com/scrooloose/nerdtree)
> File system explorer
##