Skip to content

Instantly share code, notes, and snippets.

@bittracker
Last active March 24, 2020 23:07
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 bittracker/08981eb013c5d096fe52 to your computer and use it in GitHub Desktop.
Save bittracker/08981eb013c5d096fe52 to your computer and use it in GitHub Desktop.
"---------------------------
" Basic Settings
"---------------------------
set nu
syntax on
colorscheme elflord
set mouse=
set ttymouse=
" Line Break
set lbr
set tw=85
set colorcolumn=-6
" Tabs
set tabstop=4
set shiftwidth=4
set expandtab
retab
" Files
set encoding=utf8
set ffs=unix,dos,mac
"---------------------------
" Key Maps
"---------------------------
"---------------------------
" Searching
"---------------------------
set smartcase
set incsearch
set hlsearch
"---------------------------
" Plugins
"---------------------------
call plug#begin('~/.vim/plugged')
Plug 'ervandew/supertab'
Plug 'vim-scripts/python.vim'
Plug 'rkulla/pydiction'
Plug 'pearofducks/ansible-vim'
call plug#end()
" Pydiction
let g:pydiction_location = '~/.vim/plugged/pydiction/complete-dict'
" Download Urls
" supertab.vim - https://github.com/ervandew/supertab
" pydiction.vim - https://github.com/rkulla/pydiction
" ansible-vim - https://github.com/pearofducks/ansible-vim
"
""" plug.vim (vim-plug) setup:
" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
"
" after Installing run: ":PlugInstall"
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment