-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
40 lines (30 loc) · 994 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
set laststatus=2
set t_Co=256
set nocp
set noshowmode
syntax on
filetype plugin indent on
set number
set relativenumber
set tabstop=4 shiftwidth=2 expandtab
set shiftwidth=4 "ensures that indent, >>, moves 4 spaces"
colorscheme molokai
set colorcolumn=90
set foldmethod=indent "adds a fold for every block of code that is indented"
hi Normal guibg=NONE ctermbg=NONE
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#fnamemod = ":t"
let mapleader = ";"
nm <C-j> :bnext<CR>
nm <C-k> :bprevious<CR>
"The following is a list Plug commands for managing Vim plugins.
call plug#begin('~/.vim/plugged')
"For adding commands that copy selections to X clipboard"
"Use 'cp' to yank into system clipboard. For example, use cp when in visual
"selection mode to yank selection into system clipboard
Plug 'christoomey/vim-system-copy'
Plug 'vim-airline/vim-airline'
Plug 'jonathanfilip/lucius'
Plug 'elixir-editors/vim-elixir'
Plug 'chrisbra/colorizer'
call plug#end()