1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00
dotfiles/.vimrc

46 lines
885 B
VimL
Raw Normal View History

2016-03-31 02:03:55 +00:00
set nocompatible " be iMproved, required
filetype off " required
2016-04-01 11:45:17 +00:00
syntax enable
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set number
set autoindent
set laststatus=2
set mouse=a
set encoding=utf-8
2016-03-31 02:03:55 +00:00
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
call vundle#end()
2016-04-01 11:45:17 +00:00
" Vim-Airline config
let g:Powerline_symbols = 'fancy'
let g:airline_powerline_fonts = 1
2016-03-31 02:03:55 +00:00
" Interface with system clipboard
noremap <Leader>y "*y
noremap <Leader>p "*p
noremap <Leader>Y "+y
noremap <Leader>P "+p
2016-04-01 13:00:11 +00:00
com W w
com Q q
com Wq wq
com WQ wq
2016-03-31 02:03:55 +00:00
" Write with sudo
cmap w!! w !sudo tee > /dev/null %
" airline buffer list
let g:airline#extensions#tabline#enabled = 1