Skip to content

Instantly share code, notes, and snippets.

@cemoody
Last active March 17, 2017 15:34
Show Gist options
  • Save cemoody/c71962585832821c69fa11d37c0b486a to your computer and use it in GitHub Desktop.
Save cemoody/c71962585832821c69fa11d37c0b486a to your computer and use it in GitHub Desktop.
Neovim personal profile
"dein Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/Users/moody/.vim/bundles/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('/Users/moody/.vim/bundles')
call dein#begin('/Users/moody/.vim/bundles')
" Let dein manage dein
" Required:
call dein#add('/Users/moody/.vim/bundles/repos/github.com/Shougo/dein.vim')
" Install packages
call dein#add('vim-airline/vim-airline')
call dein#add('frankier/neovim-colors-solarized-truecolor-only')
call dein#add('vim-airline/vim-airline-themes')
call dein#add('ctrlpvim/ctrlp.vim')
call dein#add('bling/vim-bufferline')
call dein#add('scrooloose/syntastic')
" Required:
call dein#end()
call dein#save_state()
endif
" Required:
filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
"End dein Scripts-------------------------
" For using solarized
set termguicolors
set background=light
colorscheme solarized
" Tab to skip through buffers
nnoremap <C-Tab> :bnext<CR>
nnoremap <Tab> :bnext<CR>
" Turn of highlighting after a search
map ,, :nohl
" always have some lines of text when scrolling
set scrolloff=5
set nu
"set tabs for python
set ts=4
set tabstop=4
set softtabstop=4 shiftwidth=4 expandtab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment