Browse Source

nvim: fzf mapped

master
TiynGER 1 month ago
parent
commit
15aa40ccf5
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      .config/nvim/init.vim

+ 6
- 2
.config/nvim/init.vim

@ -83,8 +83,8 @@ autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
autocmd VimLeave *.tex !texclear % autocmd VimLeave *.tex !texclear %
" mapping Dictionaries " mapping Dictionaries
map <F6> :setlocal spell! spelllang=de_de<CR>
map <F7> :set spelllang=en_us<CR>
nmap <F6> :setlocal spell! spelllang=de_de<CR>
nmap <F7> :set spelllang=en_us<CR>
" compiler for languages " compiler for languages
map <leader>c :w! \| !compiler <c-r>%<CR> map <leader>c :w! \| !compiler <c-r>%<CR>
@ -169,6 +169,10 @@ let g:neotex_enabled = 2
" frazrepo/vim-rainbow " frazrepo/vim-rainbow
au FileType,BufNewFile,BufRead java,c,cpp,py,h call rainbow#load() au FileType,BufNewFile,BufRead java,c,cpp,py,h call rainbow#load()
" junegunn/fzf.vim
let $FZF_DEFAULT_COMMAND = 'find . ~ -type f'
nmap <F4> :FZF<CR>
" majutsushi/tagbar " majutsushi/tagbar
map <F3> :TagbarToggle<CR> map <F3> :TagbarToggle<CR>

Loading…
Cancel
Save