You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.3 KiB
101 lines
2.3 KiB
|
|
" An example for a vimrc file.
|
|
"
|
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
" Last change: 2017 Sep 20
|
|
"
|
|
" To use it, copy it to
|
|
" for Unix and OS/2: ~/.vimrc
|
|
" for Amiga: s:.vimrc
|
|
" for MS-DOS and Win32: $VIM\_vimrc
|
|
" for OpenVMS: sys$login:.vimrc
|
|
|
|
" When started as "evim", evim.vim will already have done these settings.
|
|
if v:progname =~? "evim"
|
|
finish
|
|
endif
|
|
|
|
" Get the defaults that most users want.
|
|
source $VIMRUNTIME/defaults.vim
|
|
|
|
if has("vms")
|
|
set nobackup " do not keep a backup file, use versions instead
|
|
else
|
|
set backup " keep a backup file (restore to previous version)
|
|
if has('persistent_undo')
|
|
set undofile " keep an undo file (undo changes after closing)
|
|
endif
|
|
endif
|
|
|
|
" Only do this part when compiled with support for autocommands.
|
|
if has("autocmd")
|
|
|
|
" Put these in an autocmd group, so that we can delete them easily.
|
|
augroup vimrcEx
|
|
au!
|
|
|
|
" For all text files set 'textwidth' to 78 characters.
|
|
autocmd FileType text setlocal textwidth=78
|
|
|
|
augroup END
|
|
|
|
else
|
|
|
|
set autoindent " always set autoindenting on
|
|
|
|
endif " has("autocmd")
|
|
|
|
" Add optional packages.
|
|
"
|
|
" The matchit plugin makes the % command work better, but it is not backwards
|
|
" compatible.
|
|
" The ! means the package won't be loaded right away but when plugins are
|
|
" loaded during initialization.
|
|
if has('syntax') && has('eval')
|
|
packadd! matchit
|
|
endif
|
|
|
|
call plug#begin()
|
|
Plug 'scrooloose/nerdcommenter'
|
|
"Plug 'preservim/nerdtree'
|
|
call plug#end()
|
|
|
|
let mapleader = ","
|
|
|
|
" My custom commands
|
|
syntax on
|
|
set number
|
|
set relativenumber
|
|
set incsearch
|
|
set ignorecase
|
|
set ruler
|
|
set noswapfile
|
|
|
|
nnoremap <C-J> <C-W><C-J>
|
|
nnoremap <C-K> <C-W><C-K>
|
|
nnoremap <C-L> <C-W><C-L>
|
|
nnoremap <C-H> <C-W><C-H>
|
|
|
|
|
|
autocmd StdinReadPre * let s:std_in=1
|
|
"autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe 'cd '.argv()[0] | endif
|
|
"autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
|
|
|
|
|
|
autocmd Filetype c setlocal tabstop=4
|
|
set shiftwidth=0
|
|
|
|
|
|
" A nerdtree like setup with netrw.
|
|
let g:netrw_banner = 0
|
|
let g:netrw_liststyle = 3
|
|
let g:netrw_browse_split = 4
|
|
let g:netrw_altv = 1
|
|
let g:netrw_winsize = 20
|
|
augroup ProjectDrawer
|
|
autocmd!
|
|
autocmd VimEnter * :Vexplore
|
|
augroup END
|
|
|
|
|