configs/home/.vimrc

84 lines
2.9 KiB
VimL
Raw Normal View History

2023-01-23 00:43:33 +01:00
syntax on " syntax highlighting
2023-01-23 00:43:33 +01:00
set nocompatible " disable compatibility to old-time vi
set mouse=v " middle-click paste with
set number
set nocompatible
2023-01-23 00:43:33 +01:00
set hlsearch " highlight search
set incsearch " incremental search
set tabstop=4 " number of columns occupied by a tab
set softtabstop=4 " see multiple spaces as tabstops so <BS> does the right thing
set expandtab " converts tabs to white space
set shiftwidth=4 " width for autoindents
set autoindent " indent a new line the same amount as the line just typed
set number " add line numbers
set wildmode=longest,list " get bash-like tab completions
set cc=100 " set an 100 column border for good coding style
set mouse=a " enable mouse click
set cursorline " highlight current cursorline
set ttyfast " Speed up scrolling in Vim
2023-02-16 16:10:07 +01:00
set fdm=indent " foldingmethod syntax
2023-02-09 13:46:39 +01:00
set foldlevel=10 " only fold when a certain complexity is reached by default. This applies only at startup.
2023-01-23 00:43:33 +01:00
"set spell " enable spell check (may need to download language package)
2023-02-17 19:46:58 +01:00
set timeout timeoutlen=200
2023-01-23 00:43:33 +01:00
" Avoid showing message extra message when using completion"
set shortmess+=c
" set timeout to wait for shortcuts with a prefix
noremap oo o<ESC>
noremap OO O<ESC>
2023-01-23 00:43:33 +01:00
" hit f3 to toggle search highlighting"
nnoremap <F3> :set hlsearch!<CR>
nnoremap <SPACE> <Nop>
let mapleader=" "
map <leader>t :echo "leader tested!"<CR>
map <leader>h :noh<CR>
2023-01-23 01:06:18 +01:00
" copy to wayland clipboard when leader is used. (note, install gvim for this)
vnoremap <leader>wy y :call system("wl-copy", @")<CR>
nnoremap <leader>wY Y :call system("wl-copy", @")<CR>
nnoremap <leader>wy y :call system("wl-copy", @")<CR>
nnoremap <leader>wyy yy :call system("wl-copy", @")<CR>
" copy to system clipboard when leader is used. (note, install gvim for this)
2023-01-23 00:43:33 +01:00
vnoremap <leader>y "+y
nnoremap <leader>Y "+Y
nnoremap <leader>y "+y
nnoremap <leader>yy "+yy
2023-02-17 19:46:58 +01:00
" dont write the pastet upon stuff in visual mode into the register
vnoremap p pgvy
2023-01-23 00:43:33 +01:00
" open terminal with F12
nnoremap <F12> :terminal<CR>
" automatically set closed braces aswell when making opened ones.
"inoremap " ""<left>
"inoremap ' ''<left>
"inoremap ( ()<left>
"inoremap [ []<left>
"inoremap { {}<left>
"inoremap {<CR> {<CR>}<ESC>O
"inoremap {;<CR> {<CR>};<ESC>O
2023-01-23 00:43:33 +01:00
" vsplit with <Leader>, then "
map <Leader>" :vsplit<CR>
" split with <Leader>, then %"
map <Leader>% :split<CR>
" enter normal mode from terminal-emulator width <ESC>
tnoremap <Esc> <C-\><C-n>
2023-01-23 01:06:18 +01:00
" :W to write file as root"
2023-01-23 00:43:33 +01:00
command W :w ! sudo tee %
" Set completeopt to have a better completion experience"
set completeopt=menuone,noinsert,noselect
2023-02-10 14:07:44 +01:00
" debuging
2023-01-23 00:43:33 +01:00
packadd termdebug
2023-02-10 14:07:44 +01:00
" debuggin for rust
command Rustdebug :let termdebugger="rust-gdb" | :Termdebug