vim自定义配置之nerdTree】的更多相关文章

vimConfig/plugin/nerdTree-setting.vim let g:NERDTree_title="[NERDTree]" nmap <F2> :NERDTree<CR>…
Ubuntu 12.04安装vim和配置   问题: ubuntu默认没有安装vim,出现: jyg@ubuntu:~$ vim test.cThe program 'vim' can be found in the following packages: * vim * vim-gnome * vim-tiny * vim-athena * vim-gtk * vim-noxTry: sudo apt-get install <selected package> 解决: 命令行输入:sudo…
vimConfig/plugin/ui-setting.vim let os = substitute(system('uname'), "\n", "", "") if os == "Darwin" winpos set lines= columns= elseif os == "Linux" winpos set lines= columns= endif colorscheme molokai set…
vimConfig/plugin/general-operation.vim "快速关闭 map <S-Q> :q<CR>:q<CR>:q<CR>:q<CR> "映射复制.粘贴.剪贴ctrl+c ctrl+v ctrl+x "map <C-V> "+pa<Esc> map! <C-V> <Esc>"+pa map <C-C> "…
vimConfig/plugin/codeFold-setting.vim "--fold setting-- set foldmethod=syntax " 用语法高亮来定义折叠 set foldlevel= " 启动vim时不要自动折叠代码 set foldcolumn= " 设置折叠栏宽度…
BundlenInstall安装autoComplPop vimConfig/plugin/autoComplPop-setting.vim "autocomplpop 设置 let g:AutoComplPop_IgnoreCaseOption= set ignorecase let g:acp_behaviorKeywordCommand="\<C-x>\<C-o>"…
BundlenInstall安装auto-pairs vimConfig/plugin/auto-pairs-setting.vim let g:autopairsflymode=…
macOS中Vim基本配置 Vim的初始化配置 .vimrc 存放位置 macOS 环境下 vim 的初始化配置文件为 .vimrc , 通常有两个(系统版本和用户版本),一个位于 /usr/share/vim/vimrc,是整个系统vim的默认配置:另一个位于 ~/.vimrc,是当前用户的 vim 配置,会覆盖系统配置.可进入 vim,在命令模式下键入 123 :version " 查看版本号:echo $VIM " 查看vim具体路径:echo $HOME " 用户主目…
基本配置 不用任何插件的情况下,先按如下配置: set nu syntax on set hlsearch set tabstop=4 set shiftwidth=4 set expandtab set smartcase set ic colorscheme srcery-drk Vundle Vundle是Vim的插件管理器,像NeoBundle也是基于Vundle实现. 虽然Vim插件可以独立安装,但如果换了台机器,使用Vundle只需要copy一份.vimrc即可. 安装方法并不复杂,…
内容包含 vim-plug,异步插件管理,总之就是下起来快. ale,异步语法检查 LeaderF,快速查找文件 completor.vim vim8的快速补全 markdown预览 common setting startup开始 使打开vimrc折叠,默认折叠是{{{ " Startup {{{ filetype indent plugin on augroup vimrcEx au! autocmd FileType text setlocal textwidth=78 augroup E…