This commit is contained in:
Nicole Tietz-Sokolskaya 2018-12-10 11:20:33 -05:00
parent 9c56342e6d
commit a85df04e8f
2 changed files with 14 additions and 11 deletions

View File

@ -26,9 +26,9 @@ autocmd FileType markdown set wrap
autocmd FileType tex set wrap
" Set tabbing to depth 2 and always use spaces.
set tabstop=2
set softtabstop=2
set shiftwidth=2
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set smarttab
set autoindent
@ -49,4 +49,6 @@ au CursorHoldI * checktime
set wildignore +=*/tmp/*,*.pyc,*/__pycache__/*
" TODO: add auto whitespace stripping
nmap <leader>b :Buffers<CR>
nmap <leader>f :Files<CR>

View File

@ -21,17 +21,18 @@ Plug 'vimwiki/vimwiki'
" add a ton of colorschemes to pick from
Plug 'flazz/vim-colorschemes'
" Better session handling
Plug 'tpope/vim-obsession'
" [submodule "vim/.vim/bundle/ctrlp"]
" path = vim/.vim/bundle/ctrlp
" url = https://github.com/ctrlpvim/ctrlp.vim
"
" Use common config to setup tab depth
Plug 'editorconfig/editorconfig-vim'
" Find files in a fuzzy way
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' } " fzf binary
Plug 'junegunn/fzf.vim' " fzf vim plugin
" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' } " fzf binary
" Plug 'junegunn/fzf.vim' " fzf vim plugin
" Plug 'shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins', 'commit': '865747efe41ea1d923758617d71e8e5b59da292e' } " Auto-completion
" Plug 'tpope/vim-obsession' " Save and restore sessions
call plug#end()