Moved files so that you can convert $HOME in a git repository directly
This commit is contained in:
parent
73e80f935c
commit
f6df53e716
13 changed files with 0 additions and 0 deletions
44
.vimrc
Normal file
44
.vimrc
Normal file
|
@ -0,0 +1,44 @@
|
|||
set nocompatible
|
||||
filetype off
|
||||
|
||||
" set the runtime path to include Vundle and initialize
|
||||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'tpope/vim-sleuth'
|
||||
Plugin 'altercation/vim-colors-solarized'
|
||||
Plugin 'Valloric/YouCompleteMe'
|
||||
call vundle#end()
|
||||
|
||||
filetype plugin indent on
|
||||
syntax enable
|
||||
if has('gui_running')
|
||||
set background=light
|
||||
set gfn=Hack\ Regular\ 9
|
||||
else
|
||||
set background=dark
|
||||
endif
|
||||
colorscheme solarized
|
||||
call togglebg#map("<F5>")
|
||||
let load_doxygen_syntax = 1
|
||||
"set autoindent
|
||||
set encoding=utf-8
|
||||
set icon
|
||||
"set smartindent
|
||||
set smartcase
|
||||
set spelllang=de,en
|
||||
set softtabstop=4
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set nowrap
|
||||
set number
|
||||
set foldmethod=indent
|
||||
set foldnestmax=10
|
||||
set nofoldenable
|
||||
set modeline
|
||||
set ruler
|
||||
set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<
|
||||
set list
|
||||
filetype plugin indent on
|
Loading…
Add table
Add a link
Reference in a new issue