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
|
set nocompatible
filetype plugin on
set shellslash
runtime extra.vim
filetype plugin indent on " required
" General vim settings{{{
syntax enable
set number
set relativenumber
set cul
" More sensible splitting
set splitbelow splitright
set backspace=start,eol,indent
" Do not create the tilde files
set nobackup
set tabstop=2
set shiftwidth=2
set expandtab
set colorcolumn=80
set softtabstop=2
set autoindent
set smartindent
" Show 5 lines above and below cursor
set scrolloff=3
set list
set listchars=tab:>\ ,trail:-,nbsp:+
" Configure statusline
set laststatus=1
set incsearch
if exists('&inccommand')
" Preview substitution
set inccommand=split
endif
set background=dark
set hidden
" Case insensitive search if all letters are small
set smartcase
set ignorecase
" Persistent undo
set undofile
set autoread
" Exit insert mode on inactivity
" au CursorHoldI * stopinsert}}}
" Cursor{{{
augroup cursorgroup
autocmd InsertEnter * set nocul
autocmd InsertLeave * set cul
augroup end"}}}
" Language specific{{{
autocmd FileType python
\ set et |
\ set tabstop=2 |
\ set shiftwidth=2 |
autocmd FileType go setlocal noet
autocmd FileType vim setlocal foldmethod=marker
autocmd BufNewFile,BufRead *.tex
\ set nocursorline |
\ set nornu |
\ set number |
\ let g:loaded_matchparen=1 |
"}}}
" File management{{{
" Fuzzy like menu
set path+=**
set wildmenu
let g:netrw_liststyle=2"}}}
" Keymapping{{{
" Tab for cycling the completion meny, in insert mode
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
" When moving more lines make it a jump. If couns i 2 it will run m'2j,
" thus storing it on the jumplist and then jumping
nnoremap <expr> j (v:count > 1 ? "m'" . v:count : '' ) . 'j'
nnoremap <expr> k (v:count > 1 ? "m'" . v:count : '' ) . 'k'
" Leader stuff
let mapleader=" "
nnoremap <SPACE> <Nop>
" Enforcing filetypes{{{
autocmd BufRead,BufNewFile *.ino set filetype=c
autocmd BufRead,BufNewFile *.asc set filetype=asciidoc
autocmd BufRead,BufNewFile *.nix set filetype=nix
autocmd BufRead,BufNewFile *.tsx set filetype=typescript"}}}
" Highlightning And colors{{{
set termguicolors
colorscheme PaperColor
" Spell check
set spelllang=en,da
" autocmd FileType mail,tex,markdown,rst set spell}}}
|