diff --git a/.vimrc b/.vimrc index 0b36a86e9bed1c2d3962eec668d328d92be3cd6c..3df9424975055c9d1f8889ea20439668f6d925f9 100644 --- a/.vimrc +++ b/.vimrc @@ -9,8 +9,6 @@ set nocompatible laststatus=2 set number relativenumber autoindent signcolumn=yes cursorline ignorecase set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 set encoding=utf8 spelllang=en_us -set backspace=2 scrolloff=4 -set shiftwidth=4 tabstop=4 colorscheme ungabunga nnoremap :bnext @@ -19,22 +17,15 @@ nnoremap :copen nnoremap :CtrlPBuffer nnoremap :ALEHover nnoremap :ALEDetail -nnoremap :ALEReset nnoremap r :let @/ = '' nmap gr :ALEFindReferences nmap gd :ALEGoToDefinition nmap re :ALERename -let g:ale_completion_enabled = 1 -let g:ale_set_highlights = 0 +let g:ale_completion_enabled = 0 let g:ale_hover_to_floating_preview = 1 let g:ale_detail_to_floating_preview = 1 -let g:ale_floating_window_border = 0 let g:ale_virtualtext_cursor = 0 let g:ale_set_quickfix = 1 -let g:ale_linters = { 'cpp': ['clangd'], 'c': ['clangd'], 'python': ['pylsp'] } -let g:ale_fixers = { 'cpp': ['clangd'], 'c': ['clangd'], 'python': ['pylsp'] } - let g:ctrlp_use_caching = 0 -let g:ctrlp_user_command = 'rg %s --files --color=never --glob ""'