w10install/scripts/config/vimrc.txt

137 lines
3.4 KiB
Plaintext
Raw Normal View History

2021-01-30 21:38:46 +01:00
"""""""""""""""""""""""""""""""
" "
" MISC VIM "
" "
"""""""""""""""""""""""""""""""
2021-04-22 21:40:58 +02:00
set showmode "Always show mode
2021-01-30 21:38:46 +01:00
set history=700 "Sets how many lines of history VIM has to remember
set ttimeoutlen=50 "Speed up O etc in the Terminal
set autoread "Set to auto read when a file is changed from the outside
set bs=2 "allow backspace
set scrolloff=6 "start scrolling 5 lines before edge of viewport
2021-01-30 21:38:46 +01:00
"Search Options
set ignorecase "Ignore case when searching
set incsearch "Make search act like search in modern browsers
set magic "Set magic on, for regular expressions
"Turn backup off
set nobackup
set nowb
set noswapfile
2021-04-22 21:40:58 +02:00
2021-01-30 21:38:46 +01:00
"""""""""""""""""""""""""""""""
" "
" Spacing and Lines "
" "
"""""""""""""""""""""""""""""""
2021-04-22 21:40:58 +02:00
"Show cursorline
2021-05-16 10:03:57 +02:00
set nocursorline
2021-04-22 21:40:58 +02:00
2021-05-16 10:03:57 +02:00
"Toggle cursorline on F8
2021-04-22 21:40:58 +02:00
nnoremap <f8> :set invcursorline cursorline?<CR>
"Show line numbers
set number
2021-05-16 10:03:57 +02:00
"Toggle line numbers on F9
nnoremap <f9> :set invnumber number?<CR>
2021-01-30 21:38:46 +01:00
2021-04-22 21:40:58 +02:00
"Set paste mode
set paste
2021-05-16 10:03:57 +02:00
"Toggle paste mode on F10
2021-04-22 21:40:58 +02:00
nnoremap <f10> :set invpaste paste?<CR>
2021-01-30 21:38:46 +01:00
"Transform tabs to spaces
2021-04-22 21:40:58 +02:00
set expandtab
"Other tabs settings
set smarttab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set shiftround
2021-01-30 21:38:46 +01:00
"Code formatting
2021-05-16 10:03:57 +02:00
set noautoindent
"Toggle autoindent mode on F7
nnoremap <f7> :set invautoindent autoindent?<CR>
2021-01-30 21:38:46 +01:00
"Line Wrapping
set wrap
"Use system clipboard
set clipboard=unnamed
2021-04-22 21:40:58 +02:00
"Disable bell and flashing
2021-01-30 21:38:46 +01:00
set noerrorbells visualbell t_vb=
2021-04-22 21:40:58 +02:00
"Set lines to yank between files
set viminfo+=<1000
2021-01-30 21:38:46 +01:00
"""""""""""""""""""""""""""""""
" "
" Statusline "
" "
"""""""""""""""""""""""""""""""
let g:currentmode={
\ 'n' : 'Normal',
\ 'no' : 'Normal Operator Pending',
\ 'v' : 'Visual',
\ 'V' : 'V-Line',
\ '^V' : 'V-Block',
\ 's' : 'Select',
\ 'S' : 'S-Line',
\ '^S' : 'S-Block',
\ 'i' : 'Insert',
\ 'R' : 'Replace',
\ 'Rv' : 'V-Replace',
\ 'c' : 'Command',
\ 'cv' : 'Vim Ex',
\ 'ce' : 'Ex',
\ 'r' : 'Prompt',
\ 'rm' : 'More',
\ 'r?' : 'Confirm',
\ '!' : 'Shell',
\ 't' : 'Terminal'
\}
2021-01-30 21:38:46 +01:00
set laststatus=2
hi User1 ctermbg=green ctermfg=red guibg=green guifg=red
hi User2 ctermbg=red ctermfg=white guibg=red guifg=white
hi User3 ctermbg=blue ctermfg=green guibg=blue guifg=green
hi User4 ctermbg=cyan ctermfg=black guibg=cyan guifg=black
hi User5 ctermbg=blue ctermfg=black guibg=blue guifg=black
2021-01-30 21:38:46 +01:00
set statusline=
set statusline+=%1* "switch to User1 highlight
set statusline+=[%n%H%M%R%W]%*
set statusline+=%3* "switch to User3 highlight
set statusline+=\ %-40F
set statusline+=%= "move to right
set statusline+=%5* "switch to User5 highlight
2021-05-16 10:03:57 +02:00
set statusline+=\ F7=autoindent "user help
2021-04-22 21:40:58 +02:00
set statusline+=\ F8=cline "user help
set statusline+=\ F9=numbers "user help
set statusline+=\ F10=paste\ "user help
2021-01-30 21:38:46 +01:00
set statusline+=%2* "switch to User2 highlight
set statusline+=\ %{&fileencoding?&fileencoding:&encoding}
set statusline+=\ [%{&fileformat}\]
set statusline+=\ %8((%l,%c)%)
set statusline+=\ %P\ "percent and space at end off string
set statusline+=%4* "switch to User4 highlight
set statusline+=\ %{toupper(g:currentmode[mode()])}\ "The current mode