TMU (Too Many Updates)
This commit is contained in:
parent
392dfed89a
commit
789f26d925
12 changed files with 147 additions and 76 deletions
|
@ -90,6 +90,7 @@ let g:LanguageClient_serverCommands = {
|
|||
\ 'python': ['pyls'],
|
||||
\ 'sh': ['bash-language-server', 'start'],
|
||||
\ }
|
||||
let g:LanguageClient_loggingFile = expand('~/.cache/vim/LanguageClient.log')
|
||||
|
||||
|
||||
function LC_maps()
|
||||
|
|
|
@ -20,7 +20,10 @@ Plug 'chriskempson/base16-vim'
|
|||
Plug 'tpope/vim-surround'
|
||||
" Plug 'tpope/vim-fugitive'
|
||||
" Plug 'tpope/vim-repeat'
|
||||
|
||||
" Regex for words, with case in mind
|
||||
Plug 'tpope/tpope-vim-abolish'
|
||||
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
|
|
|
@ -13,6 +13,7 @@ set scrolloff=10
|
|||
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set gdefault
|
||||
if has('nvim')
|
||||
set inccommand=nosplit " Shows you in realtime what changes your ex command should make.
|
||||
endif
|
||||
|
@ -99,3 +100,5 @@ else
|
|||
nmap <C-J> jjjjjjjjjjjjjjjjjjjjj
|
||||
endif
|
||||
|
||||
" \s to replace globally the word under the cursor
|
||||
nnoremap <Leader>s :%s/\<<C-r><C-w>\>/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue