84 lines
2.1 KiB
VimL
84 lines
2.1 KiB
VimL
" __ _
|
||
" / / (_)
|
||
" / /_ ___ _ __ ___ _ __ ___
|
||
" / /\ \ / / | '_ ` _ \| '__/ __|
|
||
" _ / / \ V /| | | | | | | | | (__
|
||
" (_)_/ \_/ |_|_| |_| |_|_| \___|
|
||
"
|
||
" ~ M. Thomas
|
||
|
||
let mapleader = "\<Space>"
|
||
|
||
" ============================== vim-plug
|
||
call plug#begin()
|
||
|
||
Plug 'morhetz/gruvbox' " color scheme
|
||
Plug 'tpope/vim-sleuth' " heuristic file indendation
|
||
Plug 'jiangmiao/auto-pairs' " pair completion
|
||
|
||
call plug#end()
|
||
|
||
" ============================== Colors
|
||
syntax on
|
||
set background=light
|
||
colorscheme gruvbox
|
||
hi Normal ctermbg=NONE guibg=NONE
|
||
|
||
" ============================== General
|
||
filetype indent plugin on
|
||
set number
|
||
set relativenumber
|
||
set cursorline
|
||
set ruler
|
||
|
||
set showmatch " highlights paranthesis
|
||
set hidden " allow moving to a new buffer without saving
|
||
set mat=5
|
||
set colorcolumn=1337
|
||
set noswapfile " can be problematic on some systems
|
||
set confirm " can't quit without saving
|
||
set noshowmode " don't show mode in status
|
||
set noshowcmd " don't show command in status
|
||
set encoding=utf-8
|
||
set mouse=a " a=on, c=off
|
||
set undolevels=1337
|
||
set backspace=indent,eol,start
|
||
set wildmenu " autocomplete :e
|
||
set scrolloff=5 " min lines above or below the cursor
|
||
|
||
" ============================== Statusline
|
||
set laststatus=0
|
||
set showtabline=0
|
||
|
||
" ============================== Indents and Whitespaces
|
||
set list
|
||
set listchars=tab:──\ ,extends:›,precedes:‹,nbsp:·,trail:·
|
||
set fillchars+=vert:\ "don't draw verticle split
|
||
|
||
autocmd FileType perl set tabstop=8 shiftwidth=4 softtabstop=4
|
||
|
||
highlight ExtraWhitespace ctermbg=red guibg=red
|
||
match ExtraWhitespace /\s\+\%#\@<!$/
|
||
|
||
" ============================== Search
|
||
set incsearch " incremental search
|
||
set ignorecase " ignore case
|
||
set smartcase " -> unless capitol letters
|
||
set hlsearch " highlight all results
|
||
|
||
" ============================== Cursor Thiccness
|
||
let &t_SI = "\<Esc>[6 q"
|
||
let &t_SR = "\<Esc>[4 q"
|
||
let &t_EI = "\<Esc>[2 q"
|
||
|
||
" ============================== netrw
|
||
let g:netrw_winsize = 25
|
||
let g:netrw_liststyle = 3 " Tree-like structure
|
||
let g:netrw_banner = 0 " Remove useless banner at the top of netrw
|
||
|
||
" ============================== Macros and Mappings
|
||
cmap Wq wq
|
||
cmap Q q
|
||
cmap W w
|
||
cmap q1 q!
|