博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MACOS配置VIM成简单IDE傻瓜式操作
阅读量:4952 次
发布时间:2019-06-11

本文共 2315 字,大约阅读时间需要 7 分钟。

零、参考文献:

https://www.jianshu.com/p/f0513d18742a

一、安照我的配置:保存文件

" Configuration file for vimset modelines=0        " CVE-2007-2438" Normally we use vim-extensions. If you want true vi-compatibility" remove change the following statementsset nocompatible    " Use Vim defaults instead of 100% vi compatibilityset backspace=2        " more powerful backspacingset showtabline=0let g:solarized_termcolors=256colorscheme torteset background=dark" Don't write backup file if vim is being called by "crontab -e"au BufWrite /private/tmp/crontab.* set nowritebackup nobackup" Don't write backup file if vim is being called by "chpass"au BufWrite /private/etc/pw.* set nowritebackup nobackupset fileformat=unixset scrolloff=5set laststatus=2set matchtime=5set incsearchset hlsearchset autoreadset cursorlineset cursorcolumnset whichwrap+=<,>,h,lset noexpandtabset nowrapset guifont=Monaco:h13set cindentset guioptions-=rset guioptions-=Lset guioptions-=blet skip_defaults_vim=1set showmatchset numberset tabstop=4set autoindentsyntax onset shiftwidth=4set encoding=utf-8set completeopt=preview,menuset mouse=afiletype offset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()Plugin 'VundleVim/Vundle.vim'"Plugin 'Valloric/YouCompleteMe'Plugin 'Lokaltog/vim-powerline'Plugin 'scrooloose/nerdtree'Plugin 'Yggdroot/indentLine'Plugin 'jiangmiao/auto-pairs'Plugin 'tell-k/vim-autopep8'Plugin 'scrooloose/nerdcommenter'call vundle#end()filetype plugin indent on"F2开启和关闭树"map 
:NERDTreeToggle
let NERDTreeChDirMode=1"显示书签"let NERDTreeShowBookmarks=1"设置忽略文件类型"let NERDTreeIgnore=['\~$', '\.pyc$', '\.swp$']"窗口大小"let NERDTreeWinSize=25"缩进指示线"let g:indentLine_char='┆'let g:indentLine_enabled = 1"autopep8设置"let g:autopep8_disable_show_diff=1let mapleader=','map
ci
map
:w
:call RunPython()
function RunPython() let mp = &makeprg let ef = &errorformat let exeFile = expand("%:t") setlocal makeprg = python\ -u set efm=%C\ %.%#, %A\ \ File\ \"%f\"\\,\ line\ %l%,%#,%Z%[%^\ ]%\\@=%m silent make % copen let &makeprg = mp let &errorformat = efendfunction

文件保存到~/.vimrc

1 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim2 然后打开vim3 :PluginInstall

 

转载于:https://www.cnblogs.com/KevinGeorge/p/8309834.html

你可能感兴趣的文章
表格的拖拽功能
查看>>
函数的形参和实参
查看>>
文字过长 用 ... 表示 CSS实现单行、多行文本溢出显示省略号
查看>>
1Caesar加密
查看>>
【TP SRM 703 div2 500】 GCDGraph
查看>>
MapReduce 重要组件——Recordreader组件 [转]
查看>>
webdriver api
查看>>
转载-FileZilla Server源码分析(1)
查看>>
apache 实现图标缓存客户端
查看>>
MediaWiki左侧导航栏通过特殊页面就可以设置。
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>