主vim配置 在https://github.com/amix/vimrc.git 基础上配置
1.安装教程连接 link
2.在安装配置configure时候注意配置安装路径和interpreter python 和python config 的版本。
LDFLAGS=-L$HOME/usr/local/lib ./configure \
--with-features=huge \
--with-tlib=ncurses \
--enable-multibyte \
--enable-rubyinterp=yes \
--enable-pythoninterp=yes \
--enable-python3interp=yes \
--with-python-command=/online/home/dengjun.hdj/.conda/envs/py2/bin/python2.7 \
--with-python-config-dir=/home/dengjun.hdj/.conda/envs/py2/bin/python2-config \
--with-python3-command=/online/home/dengjun.hdj/.conda/envs/tf2/bin/python3.6 \
--with-python3-config-dir=/online/home/dengjun.hdj/.conda/envs/tf2/lib/python3.6/config-3.6m-x86_64-linux-gnu \
--enable-luainterp=yes \
--enable-gui=gtk2 \
--enable-cscope \
--prefix=$HOME/usr/local
1.使用anaconda 安装
conda install -c conda-forge vim
2.安装neovim配置
conda install -c conda-forge neovim
3.很多平常没有root权限的软件,以前需要编译安装的,实际上都可以通过anaconda安装,大爱anaconda.
1.继承配置https://github.com/amix/vimrc.git 下的基础配置。 2.F5/F10基础命令配置.
autocmd VimEnter * NERDTree | wincmd p
autocmd BufWinEnter * NERDTreeMirror
let g:NERDTreeWinPos = "left"
autocmd BufEnter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
nnoremap <silent> <F10> :call PdbProgram()<CR>
func! PdbProgram()
exec "w"
if &filetype == 'python'
exec "!python -m ipdb %"
elseif &filetype == 'java'
exec "!javac -g -encoding UTF-8 % && jdb %:t:r"
elseif &filetype=='pandoc'
exec "!pandoc % |lynx -stdin"
exec "redraw"
endif
endfunc
nnoremap <F5> :call RunProgram()<CR>
func! RunProgram()
exec "w"
if &filetype == 'python'
exec "!time python %"
elseif &filetype == 'java'
echo "the java file"
exec "!javac -encoding UTF-8 % && java %:t:r"
elseif &filetype=='pandoc'
exec "!pandoc % |lynx -stdin"
exec "redraw"
else
echo "the unrecognized type"
endif
endfunc
let g:indent_guides_enable_on_vim_startup = 1
nmap <F8> :TagbarToggle<CR>
let vim_markdown_preview_hotkey='<C-m>'
let vim_markdown_preview_browser='Google Chrome'
let vim_markdown_preview_temp_file=1
let vim_markdown_preview_pandoc=1
YouCompleteMe asyncrun.vim jedi-vim supertab tagbar vim-fugitive vim-indent-guides vim-pandoc
Zenburn calendar.vim powerline tabulous vim-airline vim-gutentags vim-markdown-preview
1.Python/Shell/C++/Java编辑器 IDE
2.markdown编辑器
3.Latex Editor
4.terminal vim8.1 supported
5.lynx pandoc vim composed
- 尽量将所有工作能在一个环境中完成,比如无论在HPC,mac平台,均可以使用相同工作环境完成工作,便于迁移。
- 配置尽量统一,可以将一部分配置放置在docker中。
- vimtutor vim 自带使用指南.
- vim从入门到精通
- [vim实战]
- Learning vimscripts # advanced level.
- vim 使用结合工作环境,比如写Python,写C++/makefile/CmakeLists 一键编译调试运行等。可以打造比专用IDE更好用的开发编译调试工作环境。
- 当vim的程序编写和shell自动化结合起来后,就能发挥威力了。可以编写shellscript 和vimscripts,将平常工作中的内容流程化固定起来,只需要一键就可以完成很多固定流程的事务处理。
- 以思考的速度来写,脑子有多快,手就有多快。