diff options
author | Alfred Perlstein <alfred@FreeBSD.org> | 2014-11-17 06:55:10 +0800 |
---|---|---|
committer | Alfred Perlstein <alfred@FreeBSD.org> | 2014-11-17 06:55:10 +0800 |
commit | f1518f4882999508d71541e3b35f4176798e739e (patch) | |
tree | 2ec141dc587ce1939dc6719f7255b9dc618787fd /editors/vim/files | |
parent | b25b4f23abc185489a9654d9e4dfa2a7cda45e1e (diff) | |
download | freebsd-ports-gnome-f1518f4882999508d71541e3b35f4176798e739e.tar.gz freebsd-ports-gnome-f1518f4882999508d71541e3b35f4176798e739e.tar.zst freebsd-ports-gnome-f1518f4882999508d71541e3b35f4176798e739e.zip |
Use vimrc from distribution.
Suggested by: many.
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 - - |