Skip to content

Instantly share code, notes, and snippets.

@lmariscal
Last active June 28, 2019 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmariscal/90390e9dadee03ac765b3b14aecba3d2 to your computer and use it in GitHub Desktop.
Save lmariscal/90390e9dadee03ac765b3b14aecba3d2 to your computer and use it in GitHub Desktop.
[minivimrc] Mini version of my .vimrc for devops. #config
set relativenumber
set number
set list
set listchars=tab:>\ ,trail:*
set encoding=utf-8
set enc=utf-8
set fileencoding=utf-8
set fileencodings=ucs-bom,utf8,prc
set wildignore+=*\\tmp\\*,*.swp,*.zip,*.exe,*.o
set completeopt=menuone,menu,longest,preview
set splitright
set hidden
set nocompatible
set rtp+=~/.fzf
set noswapfile
set nowrap
set autoindent
set copyindent
set pastetoggle=<F2>
set smartcase
set hlsearch
set incsearch
set ignorecase
set nobackup
set nowritebackup
set shiftwidth=2
set tabstop=2
set wildmenu
set showmatch
set incsearch
set hlsearch
set statusline=%1*\ \ %t%m%r%h%w\
set statusline+=[%{strlen(&fenc)?&fenc:&enc}]\ %y
set statusline+=%=\ [line\ %l\/%L]\ \
set laststatus=2
set mouse=a
set foldenable
set foldmethod=marker
set foldlevel=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment