1 Star 0 Fork 12

Zoker / EverVim

forked from LER0ever / EverVim
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.vimrc.before 3.56 KB
一键复制 编辑 原始数据 按行查看 历史
LER0ever 提交于 2017-04-10 13:26 . feat(airline): add tabline for buffers
" Modeline and Notes {
" EverVim is a vim distribution based on spf13-vim(Apache License)
" EverVim is Licensed under either of
" * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
" * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
" }
" evervim options {
" Prevent automatically changing to open file directory
" May cause airline to misbehave
" let g:evervim_no_autochdir = 1
" Disable views
" let g:evervim_no_views = 1
" Leader keys
" let g:evervim_leader='\'
" let g:evervim_localleader='_'
" Disable easier moving in tabs and windows
" let g:evervim_no_easyWindows = 1
" Disable wrap relative motion for start/end line motions
" let g:evervim_no_wrapRelMotion = 1
" Disable fast tab navigation
" let g:evervim_no_fastTabs = 1
" Clear search highlighting
" let g:evervim_clear_search_highlight = 1
" Disable neosnippet expansion
" This maps over <C-k> and does some Supertab
" emulation with snippets
" let g:evervim_no_neosnippet_expand = 1
" Disable whitespace stripping
" let g:evervim_keep_trailing_whitespace = 1
" Enable powerline symbols
" let g:airline_powerline_fonts = 1
" vim files directory
" let g:evervim_consolidated_directory = <full path to desired directory>
" eg: let g:evervim_consolidated_directory = $HOME . '/.vim/'
" This makes the completion popup strictly passive.
" Keypresses acts normally. <ESC> takes you of insert mode, words don't
" automatically complete, pressing <CR> inserts a newline, etc. Iff the
" menu is open, tab will cycle through it. If a snippet is selected, <C-k>
" expands it and jumps between fields.
" let g:evervim_noninvasive_completion = 1
" Don't turn conceallevel or concealcursor
" let g:evervim_no_conceal = 1
" For some colorschemes, autocolor will not work (eg: 'desert', 'ir_black')
" Indent guides will attempt to set your colors smartly. If you
" want to control them yourself, do it here.
" let g:indent_guides_auto_colors = 0
" autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd guibg=#212121 ctermbg=233
" autocmd VimEnter,Colorscheme * :hi IndentGuidesEven guibg=#404040 ctermbg=234
" Leave the default font and size in GVim
" To set your own font, do it from ~/.vimrc.local
" let g:evervim_no_big_font = 1
" Disable omni complete
" let g:evervim_no_omni_complete = 1
" Prefer indentline
" let g:evervim_use_indentguides = 1
" Prefer Neoformat
" let g:evervim_use_neoformat = 1
" Hybrid Linenumber
" let g:evervim_hybrid_linenumber = 1
" Don't create default mappings for multicursors
" See :help multiple-cursors-mappings
" let g:multi_cursor_use_default_mapping=0
" let g:multi_cursor_next_key='<C-n>'
" let g:multi_cursor_prev_key='<C-p>'
" let g:multi_cursor_skip_key='<C-x>'
" let g:multi_cursor_quit_key='<Esc>'
" Require a special keypress to enter multiple cursors mode
" let g:multi_cursor_start_key='+'
" Mappings for editing/applying evervim config
" let g:evervim_edit_config_mapping='<leader>ev'
" let g:evervim_apply_config_mapping='<leader>sv'
" }
" Use fork before if available {
if filereadable(expand("~/.vimrc.before.fork"))
source ~/.vimrc.before.fork
endif
" }
" Use local before if available {
if filereadable(expand("~/.vimrc.before.local"))
source ~/.vimrc.before.local
endif
" }
VimL
1
https://gitee.com/kesin/EverVim.git
git@gitee.com:kesin/EverVim.git
kesin
EverVim
EverVim
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891