Remove vim config files
This commit is contained in:
parent
efca004e83
commit
1b803ade50
2 changed files with 0 additions and 55 deletions
3
.gvimrc
3
.gvimrc
|
@ -1,3 +0,0 @@
|
|||
set guioptions=aci
|
||||
|
||||
winsize 180 48
|
52
.vimrc
52
.vimrc
|
@ -1,52 +0,0 @@
|
|||
" --- Options ---------------------------------------------------------------{{{
|
||||
set nocompatible " Disable vi compatability
|
||||
set ffs=unix,dos " File format prefer unix endings
|
||||
set eol " Add newline at end of file
|
||||
set shellslash " Use forward slashes for file names
|
||||
set nobk " Do not use backup files
|
||||
set formatoptions=crq " Format options: wrap (c)omments at textwidth, insert comment leade(r), and unknown
|
||||
set textwidth=80 " 80 characters wide
|
||||
set laststatus=2 " Always use status line
|
||||
set ch=2 " Command line two lines high
|
||||
set wildmenu " Command line completion helper
|
||||
set showmode " Display current mode
|
||||
if exists("&wildignorecase") " Windows gvim does not have this (it's automatic)
|
||||
set wildignorecase " Ignore case when tab-completing files
|
||||
endif
|
||||
set scrolloff=8 " Always keep cursor 8 lines from edge
|
||||
set backspace=2 " Allow backspace over indent, eol, and start of insert
|
||||
set hlsearch " Search highlights
|
||||
set incsearch " Search as you type
|
||||
set ignorecase " Search will ignore case
|
||||
set smartcase " Search will respect case if any letter is uppercase
|
||||
set hls " Highlight search
|
||||
syntax on " Turn on syntax highlighting
|
||||
|
||||
" Tabstops are 2 spaces
|
||||
set tabstop=2
|
||||
set softtabstop=2
|
||||
set shiftwidth=2
|
||||
set expandtab
|
||||
|
||||
" Set the status line
|
||||
set stl=%f\ %m\ %r\ Line:\ %l/%L[%p%%]\ Col:\ %c\ Buf:\ #%n\ [%b][0x%B]
|
||||
|
||||
" Filetype specific stuff
|
||||
filetype on
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
" --- }}}
|
||||
|
||||
" --- Style and font --------------------------------------------------------{{{
|
||||
colorscheme vividchalk
|
||||
|
||||
if has("gui_gtk2")
|
||||
set guifont=Ubuntu\ Mono\ 10
|
||||
else
|
||||
set guifont=Ubuntu\ Mono:h10
|
||||
endif
|
||||
" --- }}}
|
||||
|
||||
" --- Plugin config ---------------------------------------------------------{{{
|
||||
|
||||
" --- }}}
|
Loading…
Reference in a new issue