/ Published in: Other
This is my .vimrc file. I'll try to keep it updated : each time I discover a new Vim trick, I'll put it there.
Expand |
Embed | Plain Text
set nocompatible colorscheme fruit set guifont=Courier_new:h12 "Tab stuff set tabstop=2 set shiftwidth=2 set softtabstop=2 set expandtab "Show command in bottom right portion of the screen set showcmd "Show lines numbers set number "Indent stuff set smartindent set autoindent "Always show the status line set laststatus=2 "Prefer a slightly higher line height set linespace=4 "Better line wrapping "set wrap "set textwidth=79 "Set incremental searching" set incsearch "Highlight searching set hlsearch " case insensitive search set ignorecase set smartcase "Enable code folding set foldenable "Hide mouse when typing set mousehide "Split windows below the current window. set splitbelow " session settings set sessionoptions=resize,winpos,winsize,buffers,tabpages,folds,curdir,help "Automatically change current directory to that of the file in the buffer autocmd BufEnter * cd %:p:h "Map code completion to , + tab imap ,<tab> <C-x><C-o> " More useful command-line completion set wildmenu "Auto-completion menu set wildmode=list:longest set completeopt=longest,menuone
You need to login to post a comment.
