aboutsummaryrefslogtreecommitdiff
path: root/Editor/vimrc
blob: fbf7cd395cd1038a05f185016d4ce3fb69ba7f0d (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
set nocompatible                        " be iMproved, required
filetype off                            " required
set enc=utf-8                           " use uft-8
set rtp+=~/.vim/bundle/Vundle.vim

call vundle#begin()
Plugin 'takac/vim-hardtime'             " Do not allow hjkl abuse
Plugin 'tpope/vim-surround'             " ys cs ds commands
Plugin 'tpope/vim-repeat'               " surround repeat
Plugin 'tpope/vim-fugitive'             " git support in airline

Plugin 'ervandew/supertab'              " Smart <Tab> => <C-n>
Plugin 'Shougo/deoplete.nvim'           " Code completion
Plugin 'zchee/deoplete-clang'           " C copletion
Plugin 'deoplete-plugins/deoplete-jedi' " Python Completion

Plugin 'bling/vim-airline'              " Airline (Powerline)
Plugin 'vim-airline/vim-airline-themes' " Airline theme

Plugin 'neomutt/neomutt.vim'            " Support for neomutt filetypes

Plugin 'chriskempson/base16-vim'        " Base16 themes

Plugin 'w0rp/ale'                       " Linting Engine

" Quality of Life
Plugin 'benizi/vim-automkdir'           " Create subdirectiries 
Plugin 'junegunn/goyo.vim'              " Distraction Free editing
Plugin 'vim-scripts/DrawIt'             " Draw boxes/lines
Plugin 'rhysd/vim-grammarous'           " Grammer checking

call vundle#end()                       " required
filetype plugin indent on               " required
filetype plugin on

syntax on                               " Enable syntax hilighting
set showcmd		                " Show (partial) command in status line.

set ignorecase		                " Do case insensitive matching
set smartcase		                " Do smart case matching
set incsearch		                " Incremental search
set hlsearch                            " Hilight matching searched

set relativenumber                      " Show number relative to line
set number                              " Shows current line instead of 0

set isfname+=32                         " Read spaces in path's


set clipboard^=unnamed                  " sync paste buffer and vims register
set mouse=                              " disable mouse

let $NVIM_TUI_ENABLE_CURSOR_SHAPE = 1   " Change cursor to | when in insert

"Autosave and Autoread
set autoread                            " Reread file on external Commands
set autowriteall
au FocusGained,BufEnter * :silent! !
au FocusLost,WinLeave * :silent! w

set undofile                            " Persisent undo accross saves
set undodir=~/.vim/undodir/             " Don't clobber dir with undo files

set noswapfile                          " Disable silly .swp file
set nobackup                            " No backup file

"Disable the super annoying autocomment
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o

"Make j and k not jump when wraping
nnoremap j gj
nnoremap k gk

"set leader to comma
let mapleader = ","

"Math with qalc
nnoremap <leader>m :.!~/bin/calc<Enter>

" Ctrl+Backspace should delete words
noremap! <C-BS> <C-w>      
noremap! <C-h> <C-w>

"Set Tab to two spaces
set expandtab
set shiftwidth=2
set softtabstop=2
"Open new file
nnoremap <Leader>o :CtrlP<CR>
nnoremap <Leader>w :w<CR>

" Hard time options
let g:hardtime_default_on = 1
let g:hardtime_maxcount = 2            " Allow to consecutive hjkl
let g:hardtime_showmsg = 0             " Don't even tell us why
let g:hardtime_allow_different_key = 1 " Allows some spamming

" Deoplete enable
let g:deoplete#enable_at_startup = 1

" Supertab
let g:SuperTabDefaultCompletionType    = '<C-n>'
let g:SuperTabCrMapping                = 0

" Airline symbols
let g:airline_powerline_fonts = 1
let g:vim_markdown_folding_disabled = 1
let g:airline_theme='base16'
let g:airline#extensions#ale#enabled = 1


" Ale Linter Config
let g:ale_set_loclist             = 0
let g:ale_set_quickfix            = 1
let g:ale_linters                 = { 'perl': ['perl', 'perlcritic'] }
let g:ale_perl_perl_options       = '-cW -Ilib -I./'
let g:ale_perl_perlcritic_options = '--stern'
let g:ale_lint_on_text_changed    = 'normal'
let g:ale_lint_on_insert_leave    = 1

" Modify The ColorScheme to show Italic and Bold in Markdown.
" Italicise comments and Type's
" And make Line numbers same as background in Base16 themes
function! s:base16_customize() abort
    call Base16hi("htmlBold",    g:base16_gui0A, "", g:base16_cterm06, "", "bold", "") 
    call Base16hi("markdownBold",    g:base16_gui0A, "", g:base16_cterm06, "", "bold", "") 
    call Base16hi("markdownHeadingDelimiter",    g:base16_gui0A, "", g:base16_cterm08, "", "bold", "") 
    call Base16hi("markdownH1",    g:base16_gui0A, "", g:base16_cterm08, "", "bold", "") 
    call Base16hi("markdownH2",    g:base16_gui0A, "", g:base16_cterm08, "", "bold", "") 
    call Base16hi("htmlItalic",  g:base16_gui0E, "", g:base16_cterm06, "", "italic", "")
    call Base16hi("markdownItalic",  g:base16_gui0E, "", g:base16_cterm06, "", "italic", "")
    call Base16hi("htmlUnderline",  g:base16_gui0E, "", g:base16_cterm06, "", "underline", "")
    call Base16hi("Italic",        "", "", "", "", "italic", "")
    call Base16hi("Comment",      g:base16_gui04, "", g:base16_cterm04, "", "italic", "")

    call Base16hi("Type",         g:base16_gui0A, "", g:base16_cterm0A, "", "italic", "")
    call Base16hi("htmlArg",         "", "", "", "", "italic", "")
    call Base16hi("LineNr",        g:base16_gui03, g:base16_cterm00, g:base16_cterm03, g:base16_cterm00, "", "")
    call Base16hi("CursorLineNr",  g:base16_gui04, g:base16_gui00, g:base16_cterm04, g:base16_cterm00, "", "")
endfunction
augroup on_change_colorschema
    autocmd!
    autocmd ColorScheme * call s:base16_customize()
augroup END

" Load base16_theme from ~/.vimrc_background
if filereadable(expand("~/.vimrc_background"))
  let base16colorspace=256
  source ~/.vimrc_background
endif