Skip to content

Instantly share code, notes, and snippets.

@pandaman64
Created March 23, 2018 05:18
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 pandaman64/007bbcf5065cf196f08cb2a59f48dae9 to your computer and use it in GitHub Desktop.
Save pandaman64/007bbcf5065cf196f08cb2a59f48dae9 to your computer and use it in GitHub Desktop.
if &compatible
set nocompatible
endif
set runtimepath+=/home/pan/.vim/bundles/repos/github.com/Shougo/dein.vim
if dein#load_state('/home/pan/.vim/bundles')
call dein#begin('/home/pan/.vim/bundles')
call dein#add('/home/pan/.vim/bundles/repos/github.com/Shougo/dein.vim')
call dein#add('thinca/vim-quickrun')
call dein#add('rust-lang/rust.vim')
call dein#add('LnL7/vim-nix')
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
syntax enable
if dein#check_install()
call dein#install()
endif
let g:quickrun_config = {
\ "_": {
\ "runner": "job",
\ "outputter/buffer/split": "botright 10sp"
\ },
\}
set nobackup
set tabstop=4
set shiftwidth=4
set softtabstop=4
set shiftround
set expandtab
set wrap
set wrapscan
set showmatch
set ruler
set number
set laststatus=2
set smarttab
set hlsearch
set incsearch
set backspace=indent,eol,start
set whichwrap=b,s,h,l,<,>,[,],~
set formatoptions-=r
set formatoptions-=o
set fileformats=unix,dos
set textwidth=0
set autoread
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment