diff options
author | Alfred Perlstein <alfred@FreeBSD.org> | 2014-11-16 22:55:10 +0000 |
---|---|---|
committer | Alfred Perlstein <alfred@FreeBSD.org> | 2014-11-16 22:55:10 +0000 |
commit | f1518f4882999508d71541e3b35f4176798e739e (patch) | |
tree | 2ec141dc587ce1939dc6719f7255b9dc618787fd /editors/vim/files | |
parent | - fix x11-fm/librfm and rodent issues with DFbsd (diff) |
Use vimrc from distribution.
Suggested by: many.
Notes
Notes:
svn path=/head/; revision=372654
Diffstat (limited to 'editors/vim/files')
-rw-r--r-- | editors/vim/files/vimrc | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/editors/vim/files/vimrc b/editors/vim/files/vimrc deleted file mode 100644 index 64321a3d2e50..000000000000 --- a/editors/vim/files/vimrc +++ /dev/null @@ -1,49 +0,0 @@ -" Uncomment the next line to make Vim more Vi-compatible -" From ubuntu's vimrc, slightly modified for FreeBSD ports. -"set compatible - -" Vim5 and later versions support syntax highlighting. Uncommenting the next -" line enables syntax highlighting by default. -if has("syntax") - syntax on -endif - -" This is the problem most of the time. -set nocompatible - -" Sensible backspace setting, seems to work on most terminals. -set backspace=2 - -" If using a dark background within the editing area and syntax highlighting -" turn on this option as well -"set background=dark - -" Uncomment the following to have Vim jump to the last position when -" reopening a file -"if has("autocmd") -" au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif -"endif - -" Uncomment the following to have Vim load indentation rules and plugins -" according to the detected filetype. -"if has("autocmd") -" filetype plugin indent on -"endif - -" The following are commented out as they cause vim to behave a lot -" differently from regular Vi. They are highly recommended though. -"set showcmd " Show (partial) command in status line. -"set showmatch " Show matching brackets. -"set ignorecase " Do case insensitive matching -"set smartcase " Do smart case matching -"set incsearch " Incremental search -"set autowrite " Automatically save before commands like :next and :make -"set hidden " Hide buffers when they are abandoned -"set mouse=a " Enable mouse usage (all modes) - -" Source a global configuration file if available -if filereadable($VIMRUNTIME . "/vimrc") - source $VIMRUNTIME . "/vimrc" -endif - - |