vim: ajout [[ ]] pour ft=sh

This commit is contained in:
Patrick Cao Huu Thien 2025-06-24 17:00:17 +02:00
parent fdfec75ab3
commit b9cdc703f2
Signed by untrusted user who does not match committer: pcao
GPG Key ID: B57DBE40C72FBCF4
1 changed files with 58 additions and 18 deletions

View File

@ -311,10 +311,10 @@ let g:ollama_logfile = '/home/patrick/vim-ollama.log'
" golang " golang
" require Vim 8.0.1453 " require Vim 8.0.1453
Plugin 'fatih/vim-go' Plugin 'fatih/vim-go'
au FileType go nmap <leader>m <Plug>(go-test) autocmd FileType go nmap <leader>m <Plug>(go-test)
au FileType go nmap <leader>a :GoAlternate<cr> autocmd FileType go nmap <leader>a :GoAlternate<cr>
au FileType go nmap gd <Plug>(go-def) autocmd FileType go nmap gd <Plug>(go-def)
au FileType go set foldmethod=syntax autocmd FileType go set foldmethod=syntax
" :Refactor extract newfunc " :Refactor extract newfunc
" Plugin 'godoctor/godoctor.vim' " Plugin 'godoctor/godoctor.vim'
@ -364,9 +364,22 @@ imap <leader>tm <esc>:TableModeToggle<cr>i
" \m to launch Shellcheck " \m to launch Shellcheck
" gb to see SCxxx in browser " gb to see SCxxx in browser
Plugin 'itspriddle/vim-shellcheck' Plugin 'itspriddle/vim-shellcheck'
au FileType sh compiler shellcheck autocmd FileType sh compiler shellcheck
au FileType sh nmap <leader>m :ShellCheck!<cr> autocmd FileType sh nmap <leader>m :ShellCheck!<cr>
au FileType sh imap <leader>m <esc>:ShellCheck!<cr>i autocmd FileType sh imap <leader>m <esc>:ShellCheck!<cr>i
" _\|/_
" (o o)
" <~~~~~~oOO-{_}-OOo~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
" | |
" | colorscheme papercolor |
" | |
" <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
" (_) (_)
Plugin 'NLKNguyen/papercolor-theme'
" All of your Plugins must be added before the following line " All of your Plugins must be added before the following line
call vundle#end() " required call vundle#end() " required
@ -383,9 +396,15 @@ filetype plugin indent on " required
" syntax " syntax
syntax on syntax on
" COLORS
" use GUI colors for the terminal
set termguicolors
" colorscheme default " colorscheme default
set background=dark
" colorscheme PaperColor
colorscheme pcht colorscheme pcht
" print code with :hardcopy using impression.lam.jussieu.fr " print code with :hardcopy using impression.lam.jussieu.fr
" set printdevice=hp5550-509 " set printdevice=hp5550-509
" set printoptions=left:5pt,right:5pt,top:5pt,bottom:5pt,number:y,duplex:off,wrap:y,paper:A4,portrait:y " set printoptions=left:5pt,right:5pt,top:5pt,bottom:5pt,number:y,duplex:off,wrap:y,paper:A4,portrait:y
@ -566,7 +585,7 @@ map <C-right> <esc>:tabnext<cr>
setlocal spell spelllang=fr,en setlocal spell spelllang=fr,en
" setlocal spell spelllang=en_us,fr " setlocal spell spelllang=en_us,fr
set spell " set nospell
highlight SpellBad term=underline ctermfg=white ctermbg=red cterm=underline highlight SpellBad term=underline ctermfg=white ctermbg=red cterm=underline
highlight SpellCap term=italic,underline ctermfg=yellow ctermbg=red cterm=underline highlight SpellCap term=italic,underline ctermfg=yellow ctermbg=red cterm=underline
highlight SpellRare term=bold,italic,underline ctermfg=cyan ctermbg=red cterm=underline highlight SpellRare term=bold,italic,underline ctermfg=cyan ctermbg=red cterm=underline
@ -621,15 +640,36 @@ autocmd BufRead * silent! call LoadTemplate('%:e','notall')
" endif " endif
" CISCO ACL " CISCO ACL
augroup filetype augroup ciscofiles
au! BufRead,BufNewFile *.crules set filetype=ciscoacl autocmd BufRead,BufNewFile *.crules setlocal filetype=ciscoacl
au! BufRead,BufNewFile *.acl set filetype=ciscoacl autocmd BufRead,BufNewFile *.acl setlocal filetype=ciscoacl
augroup END augroup END
" markdown syntax for gitit " markdown syntax for gitit
augroup filetype augroup markdownfiles
au! BufRead,BufNewFile *.page set filetype=markdown autocmd BufRead,BufNewFile *.page setlocal filetype=markdown
au! BufRead,BufNewFile *.md set filetype=markdown autocmd BufRead,BufNewFile *.md setlocal filetype=markdown
augroup END
" HTML
augroup htmlfiles
autocmd BufRead,BufNewFile *.html setlocal filetype=html
" format all file with tidy
autocmd FileType html nmap <buffer> <leader>tidy :%!tidy -config ~/.vim/ftplugin/tidyrc_html.txt<CR>
augroup END
" shell
augroup shellfiles
autocmd BufRead,BufNewFile *.sh setlocal filetype=bash
" FIXME ne fonctionne plus sous vim 9.1
" autocmd FileType sh setlocal sections=^function,^\w\+\s*()
" FIXME \| ou <bar> ne fonctionne pas
" nnoremap <silent> ]] /^function\|^\w\+\s*()<CR>
nnoremap <silent> ]] /^function <CR>
nnoremap <silent> ]<space> /\w\+\s*()<CR>
nnoremap <silent> [[ k?function <CR>
nnoremap <silent> [<space> k?\w\+\s*()<CR>
augroup END augroup END
@ -718,10 +758,10 @@ nmap <leader>V :source ~/.vimrc<cr>
imap <leader>s <esc>:!see %<cr>i imap <leader>s <esc>:!see %<cr>i
nmap <leader>s :!see %<cr> nmap <leader>s :!see %<cr>
" html + php " html + php
" nmap <leader>h :set ft=html<cr> " nmap <leader>h :setlocal ft=html<cr>
" imap <leader>h <esc>:set ft=html<cr>i " imap <leader>h <esc>:setlocal ft=html<cr>i
" nmap <leader>p :set ft=php<cr> " nmap <leader>p :setlocal ft=php<cr>
" imap <leader>p <esc>:set ft=php<cr>i " imap <leader>p <esc>:setlocal ft=php<cr>i
" make " make
nmap <leader>m :w<cr>:!clear<cr>:make<cr> nmap <leader>m :w<cr>:!clear<cr>:make<cr>
imap <leader>m <esc>:w<cr>:!clear<cr>:make<cr> imap <leader>m <esc>:w<cr>:!clear<cr>:make<cr>