dotfiles/vim/.vimrc

188 lines
4.8 KiB
VimL
Raw Normal View History

2021-05-06 00:25:15 +02:00
set nocompatible
2022-12-18 14:54:56 +01:00
set backspace=start,eol,indent
set hidden
set hlsearch
2021-05-06 00:25:15 +02:00
syntax on
filetype plugin on
2022-12-18 14:54:56 +01:00
set tabstop=4 shiftwidth=4 autoindent smartindent expandtab
2023-07-19 00:30:51 +02:00
set mouse=v
2022-12-18 14:54:56 +01:00
"set noswapfile
" Numbering of lines
" set relativenumber
2021-05-06 00:25:15 +02:00
set number
2022-12-18 14:54:56 +01:00
" Runtimepath variables
" call -> set rtp? show the runtime path
let $RTP=split(&runtimepath, ',')[0]
let $RC="$HOME/.vimrc"
" Move Swap,Backup and undo files into .vim directory
2023-05-26 09:06:10 +02:00
set directory^=$HOME/.vim/.swap//
set backupdir^=$HOME/.vim/.backup//
set undodir^=$HOME/.vim/.undo//
2022-12-18 14:54:56 +01:00
" Split to the right and below
set splitbelow
set splitright
" Folding
set foldenable foldlevelstart=20 foldmethod=indent
2021-05-06 00:25:15 +02:00
2022-12-18 14:54:56 +01:00
" Rebind shortcut to switch splits
nmap <C-h> <C-w>h
nmap <C-j> <C-w>j
nmap <C-k> <C-w>k
nmap <C-l> <C-w>l
" Finding files
set path+=**
set wildmenu
" Tags
command! MakeTags !ctags -R .
set autochdir
set tags=tags;
2023-05-26 09:06:10 +02:00
" Press F9 to run Python script
autocmd FileType python map <buffer> <F9> :w<CR>:exec '!python3' shellescape(@%, 1)<CR>
autocmd FileType python imap <buffer> <F9> <esc>:w<CR>:exec '!python3' shellescape(@%, 1)<CR>
2022-12-18 14:54:56 +01:00
" File browsing
2021-05-06 00:25:15 +02:00
let g:netrw_banner=0
let g:netrw_browse_split=4
let g:netrw_altv=1
let g:netrw_liststyle=3
let g:netrw_list_hide=netrw_gitignore#Hide()
let g:netrw_list_hide.=',\(\^\|\s\s\)\zs\.\S\+'
2022-12-18 14:54:56 +01:00
map <C-n> :Lex <bar> vertical resize 30 <CR>
2021-05-06 00:25:15 +02:00
2022-12-18 14:54:56 +01:00
" Cursorline
2021-05-06 00:25:15 +02:00
set cursorline
hi CursorLine cterm=NONE ctermbg=darkgrey ctermfg=white
2022-12-18 14:54:56 +01:00
" Statusline
" function! gitbranch()
" return system("git rev-parse --abbrev-ref head 2>/dev/null | tr -d '\n'")
" endfunction
"
" function! statuslinegit()
" let l:branchname = gitbranch()
" return strlen(l:branchname) > 0?' '.l:branchname.' ':''
" endfunction
function! UpdateGitBranch()
2023-07-19 00:30:51 +02:00
let l:branchname = system("git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
2022-12-18 14:54:56 +01:00
let b:branchstatus = strlen(l:branchname) > 0? ' '.l:branchname.' ':''
2021-05-06 00:25:15 +02:00
endfunction
augroup UPDATE_GITBRANCH
2022-12-18 14:54:56 +01:00
" clear previous commands
autocmd!
2022-12-18 14:54:56 +01:00
" Update git branch
autocmd BufWritePre * :call UpdateGitBranch()
autocmd BufReadPost * :call UpdateGitBranch()
2022-12-18 14:54:56 +01:00
autocmd BufEnter * :call UpdateGitBranch()
augroup end
2021-05-06 00:25:15 +02:00
set laststatus=2
set statusline=
set statusline+=%#PmenuSel#
2022-12-18 14:54:56 +01:00
" set statusline+=%{StatuslineGit()}
2023-07-19 00:30:51 +02:00
set statusline+=%{b:branchstatus}
2021-05-06 00:25:15 +02:00
set statusline+=%#BufTabLineCurrent#
set statusline+=\ %M
set statusline+=\ %r
set statusline+=\ %F
set statusline+=%= "Right side settings
set statusline+=\ %y
set statusline+=%#CursorColumn#
set statusline+=\ %{&fileencoding?&fileencoding:&encoding}
set statusline+=\[%{&fileformat}\]
set statusline+=\ %c:%l/%L
set statusline+=\ %p%%
set statusline+=\ [%n]
2023-05-26 09:06:10 +02:00
"packadd! indentLine
2022-12-18 14:54:56 +01:00
"let g: indentLine_char = '⦙'
2021-05-06 00:25:15 +02:00
2022-12-18 14:54:56 +01:00
" let g:vimspector_enable_mappings = 'HUMAN'
" packadd! vimspector
2021-05-06 00:25:15 +02:00
2023-07-24 08:07:37 +02:00
set termguicolors
" colorscheme gruvbox
colorscheme catppuccin_macchiato
2021-05-06 00:25:15 +02:00
set bg=dark
2022-12-18 14:54:56 +01:00
packadd! vim-log-highlighting
2023-05-26 09:06:10 +02:00
" tagbar, press F8
nmap <F8> :TagbarToggle<CR>
2023-07-18 21:59:39 +02:00
2023-07-24 08:07:37 +02:00
" ---------- Selection Highlighting
2023-07-18 21:59:39 +02:00
" hlsearch colors
highlight Search ctermbg=black ctermfg=darkgrey ctermbg=grey
" Highlight all instances of word under cursor, when idle.
function! AutoHighlightToggle()
let @/ = ''
augroup auto_highlight
au!
au CursorHold * let @/ = '\V\<'.escape(expand('<cword>'), '\').'\>'
augroup end
2023-07-24 08:07:37 +02:00
setl updatetime=500
2023-07-18 21:59:39 +02:00
endfunction
call AutoHighlightToggle()
" ----------- Code Completion
2023-07-18 23:56:32 +02:00
let g:ale_enabled = 1
let g:ale_hover_enabled = 1
" nmap gr :ALEFindReferences<CR>
2023-07-24 08:07:37 +02:00
nmap K :ALEHover<CR>
set completeopt+=menuone
set completeopt+=noselect
set completeopt+=noinsert
set shortmess+=c " Shut off completion messages
set belloff+=ctrlg " Add only if Vim beeps during completion
let g:mucomplete#enable_auto_at_startup = 1
let g:mucomplete#completion_delay = 1
set omnifunc=syntaxcomplete#Complete
" set omnifunc=ale#completion#Complete
"set omnifunc=ale#completion#OmniFunc
"let g:ale_completion_enabled=1
"function! OpenCompletion()
" if !pumvisible() && ((v:char >= 'a' && v:char <= 'z') || (v:char >= 'A' && v:char <= 'Z'))
" call feedkeys("\<C-x>\<C-o>", "n")
" endif
"endfunction
"
"autocmd InsertCharPre * call OpenCompletion()
2023-07-18 21:59:39 +02:00
let g:ale_set_balloons=1
2023-07-24 08:07:37 +02:00
"
"set completeopt+=longest,menu,menuone,preview,noselect,noinsert
"" set completeopt+=menuone,noselect,noinsert
""
2023-07-18 23:56:32 +02:00
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
2023-07-24 08:07:37 +02:00
packloadall
" Load all of the helptags now, after plugins have been loaded.
" All messages and errors will be ignored.
silent! helptags ALL
2023-07-24 10:12:31 +02:00
" tmux color correction
if exists('+termguicolors')
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors
endif
2023-07-24 17:09:50 +02:00
" Remove conceal from Markdown when Insert mode is set
autocmd InsertEnter *.{markdown,md} set conceallevel=0
autocmd InsertLeave *.{markdown,md} set conceallevel=2
2023-07-24 20:53:54 +02:00
" Remove conceal from JSON when Insert mode is on
autocmd InsertEnter *.{json} set conceallevel=0
autocmd InsertLeave *.{json} set conceallevel=2