mirror of
https://github.com/chylex/dotfiles.git
synced 2025-09-15 21:32:09 +02:00
Compare commits
1 Commits
main
...
12d678a073
Author | SHA1 | Date | |
---|---|---|---|
12d678a073
|
30
.bashrc
30
.bashrc
@@ -4,11 +4,9 @@ bind "set show-all-if-ambiguous on"
|
|||||||
bind '"\e[A": history-search-backward'
|
bind '"\e[A": history-search-backward'
|
||||||
bind '"\e[B": history-search-forward'
|
bind '"\e[B": history-search-forward'
|
||||||
|
|
||||||
alias gh='history|grep'
|
|
||||||
alias less='less -R --mouse'
|
|
||||||
alias zless='zless -R --mouse'
|
|
||||||
alias lsa='ls -l -v --all --human-readable --group-directories-first --color=auto'
|
alias lsa='ls -l -v --all --human-readable --group-directories-first --color=auto'
|
||||||
alias vim='vim -p'
|
alias gh='history|grep'
|
||||||
|
alias mc='mc -x'
|
||||||
|
|
||||||
alias d='docker'
|
alias d='docker'
|
||||||
alias dc='docker compose'
|
alias dc='docker compose'
|
||||||
@@ -29,29 +27,7 @@ function dtopall() { for c in $(docker ps -q); do docker inspect $c -f "{{ .Name
|
|||||||
function dsubnets() { docker network inspect $(docker network ls | awk '$3 == "bridge" { print $1 }') | jq -r '.[] | .Name + " " + .IPAM.Config[0].Subnet' -; }
|
function dsubnets() { docker network inspect $(docker network ls | awk '$3 == "bridge" { print $1 }') | jq -r '.[] | .Name + " " + .IPAM.Config[0].Subnet' -; }
|
||||||
function dmemlimit() { docker stats --no-stream --format "{{.MemUsage}}" | awk '{print $3}' | sort | sed 's/.$//' | numfmt --from=iec-i | awk '{s+=$1} END {printf "%.0f\n", s}' | numfmt --to=iec --format="%.3f"; }
|
function dmemlimit() { docker stats --no-stream --format "{{.MemUsage}}" | awk '{print $3}' | sort | sed 's/.$//' | numfmt --from=iec-i | awk '{s+=$1} END {printf "%.0f\n", s}' | numfmt --to=iec --format="%.3f"; }
|
||||||
|
|
||||||
function ssh() {
|
function borgsize() { printf 'Archive\t\t\tOrig\tComp\tDedup\n'; printf '%-16.16s\t%s\t%s\t%s\n' $(borg info --json --sort-by name --glob-archives '*' "$1" | jq '.archives[] | "\(.name) \(.stats.original_size) \(.stats.compressed_size) \(.stats.deduplicated_size)"' | sed --expression='s/^"//;s/"$//' | numfmt --field='2-4' --to=iec); }
|
||||||
if [ -n "${TMUX_PANE}" ]; then
|
|
||||||
tmux rename-window -t"${TMUX_PANE}" "$*"
|
|
||||||
command ssh "$@"
|
|
||||||
tmux set-window-option automatic-rename "on"
|
|
||||||
else
|
|
||||||
command ssh "$@"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function borgsize() {
|
|
||||||
printf 'Archive\t\t\tOrig\tComp\tDedup\n'
|
|
||||||
printf '%-16.16s\t%s\t%s\t%s\n' $(borg info --json --sort-by name --glob-archives '*' "$1" | jq '.archives[] | "\(.name) \(.stats.original_size) \(.stats.compressed_size) \(.stats.deduplicated_size)"' | sed --expression='s/^"//;s/"$//' | numfmt --field='2-4' --to=iec)
|
|
||||||
}
|
|
||||||
|
|
||||||
function convflac() {(
|
|
||||||
set -e
|
|
||||||
for f in *."$1"; do
|
|
||||||
n="${f%.*}"
|
|
||||||
ffmpeg -i "$n.$1" -compression_level 12 "$n.flac"
|
|
||||||
exiftool -TagsFromFile "$n.$1" "-all:all>all:all" "$n.flac"
|
|
||||||
done
|
|
||||||
)}
|
|
||||||
|
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
|
|
||||||
|
428
.ideavimrc
428
.ideavimrc
@@ -1,99 +1,30 @@
|
|||||||
set clipboard-=ideaput
|
set idearefactormode=visual
|
||||||
set hlsearch
|
|
||||||
set ignorecase
|
set ignorecase
|
||||||
set incsearch
|
set incsearch
|
||||||
|
set noerrorbells
|
||||||
set number
|
set number
|
||||||
set nrformats-=octal
|
|
||||||
set relativenumber
|
set relativenumber
|
||||||
set scrolloff=999
|
set scrolloff=12
|
||||||
set showcmd
|
set showcmd
|
||||||
set showmode
|
set showmode
|
||||||
set sidescrolloff=999
|
set sidescrolloff=48
|
||||||
set smartcase
|
set smartcase
|
||||||
set virtualedit=onemore
|
set virtualedit=onemore
|
||||||
set visualbell
|
set visualbell
|
||||||
|
|
||||||
" Use WSL bash as shell
|
set acejump
|
||||||
if has('win32')
|
set argtextobj
|
||||||
set shell=bash.exe
|
set exchange
|
||||||
set shellcmdflag=-lic
|
set highlightedyank
|
||||||
set shellxquote=
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Configure IDEA settings (https://github.com/JetBrains/ideavim/wiki/set-commands)
|
|
||||||
set ideajoin
|
set ideajoin
|
||||||
set idearefactormode=visual
|
set matchit
|
||||||
|
set multiple-cursors
|
||||||
|
set ReplaceWithRegister
|
||||||
|
set surround
|
||||||
|
set textobj-entire
|
||||||
|
set textobj-indent
|
||||||
|
|
||||||
" Configure IDE keybindings (https://github.com/JetBrains/ideavim/wiki/sethandler)
|
" http://vimdoc.sourceforge.net/htmldoc/vimindex.html
|
||||||
sethandler <C-A> a:ide
|
|
||||||
sethandler <C-B> a:ide
|
|
||||||
sethandler <C-C> a:ide
|
|
||||||
sethandler <C-E> a:ide
|
|
||||||
sethandler <C-F> a:ide
|
|
||||||
sethandler <C-G> a:ide
|
|
||||||
sethandler <C-H> a:ide
|
|
||||||
sethandler <C-I> a:ide
|
|
||||||
sethandler <C-J> a:ide
|
|
||||||
sethandler <C-K> a:ide
|
|
||||||
sethandler <C-L> a:ide
|
|
||||||
sethandler <C-M> a:ide
|
|
||||||
sethandler <C-R> a:ide
|
|
||||||
sethandler <C-S> a:ide
|
|
||||||
sethandler <C-T> a:ide
|
|
||||||
sethandler <C-V> a:ide
|
|
||||||
sethandler <C-W> a:ide
|
|
||||||
sethandler <C-X> a:ide
|
|
||||||
sethandler <C-Y> a:ide
|
|
||||||
sethandler <C-\> a:ide
|
|
||||||
|
|
||||||
sethandler <A-B> a:vim
|
|
||||||
sethandler <A-H> a:vim
|
|
||||||
sethandler <A-J> a:vim
|
|
||||||
sethandler <A-K> a:vim
|
|
||||||
sethandler <A-L> a:vim
|
|
||||||
sethandler <A-N> a:vim
|
|
||||||
sethandler <A-O> a:vim
|
|
||||||
sethandler <A-P> a:vim
|
|
||||||
sethandler <A-S-B> a:vim
|
|
||||||
sethandler <A-S-H> a:vim
|
|
||||||
sethandler <A-S-J> a:vim
|
|
||||||
sethandler <A-S-K> a:vim
|
|
||||||
sethandler <A-S-L> a:vim
|
|
||||||
sethandler <A-S-O> a:vim
|
|
||||||
sethandler <A-V> a:vim
|
|
||||||
sethandler <A-X> a:vim
|
|
||||||
sethandler <C-D> a:vim
|
|
||||||
sethandler <C-I> a:vim
|
|
||||||
sethandler <C-N> a:vim
|
|
||||||
sethandler <C-O> a:vim
|
|
||||||
sethandler <C-P> a:vim
|
|
||||||
sethandler <C-S-W> a:vim
|
|
||||||
sethandler <C-U> a:vim
|
|
||||||
sethandler <S-BS> a:vim
|
|
||||||
|
|
||||||
sethandler <C-Left> a:vim
|
|
||||||
sethandler <C-Right> a:vim
|
|
||||||
sethandler <S-Left> a:vim
|
|
||||||
sethandler <S-Right> a:vim
|
|
||||||
|
|
||||||
if &ide =~? 'rider'
|
|
||||||
" These shortcuts are broken in Rider for some reason...
|
|
||||||
sethandler <A-S-H> a:ide
|
|
||||||
sethandler <A-S-L> a:ide
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Enable plugins (https://github.com/JetBrains/ideavim/wiki/IdeaVim-Plugins)
|
|
||||||
Plug 'argtextobj.vim'
|
|
||||||
Plug 'vim-exchange'
|
|
||||||
Plug 'vim-highlightedyank'
|
|
||||||
Plug 'vim-indent-object'
|
|
||||||
Plug 'vim-matchit'
|
|
||||||
Plug 'vim-multiple-cursors'
|
|
||||||
Plug 'vim-paragraph-motion'
|
|
||||||
Plug 'vim-surround'
|
|
||||||
Plug 'vim-textobj-entire'
|
|
||||||
|
|
||||||
" https://vimhelp.org/index.txt.html
|
|
||||||
|
|
||||||
" Map top row on Czech keyboard layout to digits
|
" Map top row on Czech keyboard layout to digits
|
||||||
map + 1
|
map + 1
|
||||||
@@ -108,219 +39,184 @@ map í 9
|
|||||||
map é 0
|
map é 0
|
||||||
|
|
||||||
" Move some commands closer on Czech keyboard layout
|
" Move some commands closer on Czech keyboard layout
|
||||||
map ů %
|
|
||||||
nnoremap ú @@
|
nnoremap ú @@
|
||||||
noremap , +
|
noremap ů ;
|
||||||
|
map § %
|
||||||
noremap § `
|
|
||||||
noremap §§ ``
|
|
||||||
nnoremap m§ m
|
|
||||||
|
|
||||||
sunmap ů
|
|
||||||
sunmap §
|
|
||||||
|
|
||||||
" Enter visual block mode
|
|
||||||
map <A-v> <C-v>
|
|
||||||
|
|
||||||
" Navigate camel humps
|
|
||||||
noremap L [w
|
|
||||||
noremap H [b
|
|
||||||
nnoremap L [w
|
|
||||||
nnoremap H [b
|
|
||||||
|
|
||||||
" Navigate to end of previous word
|
" Navigate to end of previous word
|
||||||
noremap <A-b> ge
|
nnoremap <A-b> ge
|
||||||
noremap <A-S-b> gE
|
nnoremap <A-S-b> gE
|
||||||
|
|
||||||
" Navigate unmatched parentheses/braces
|
" Navigate to indents
|
||||||
noremap g( [(
|
nnoremap J +
|
||||||
noremap g) ])
|
vnoremap J +
|
||||||
noremap g{ [{
|
nnoremap K -
|
||||||
noremap g} ]}
|
vnoremap K -
|
||||||
|
|
||||||
|
" Navigate camel humps
|
||||||
|
nnoremap L [w
|
||||||
|
vnoremap L [w
|
||||||
|
nnoremap H [b
|
||||||
|
vnoremap H [b
|
||||||
|
|
||||||
|
" Edit camel humps
|
||||||
|
nnoremap dL :raction EditorDeleteToWordEndInDifferentHumpsMode<CR>
|
||||||
|
nnoremap dH :raction EditorDeleteToWordStartInDifferentHumpsMode<CR>
|
||||||
|
nmap dih dHdL " Only works in the middle of a hump
|
||||||
|
nmap cL dLi
|
||||||
|
nmap cH dHi
|
||||||
|
nmap cih dihi
|
||||||
|
|
||||||
" Edit from cursor to start/end of parenthesized block
|
" Edit from cursor to start/end of parenthesized block
|
||||||
nnoremap c) c])
|
nnoremap c) c])
|
||||||
nnoremap d) d])
|
nnoremap d) d])
|
||||||
nnoremap c( c[((
|
nnoremap c( c[((
|
||||||
nnoremap d( c[((<Esc>l
|
nnoremap d( c[((<ESC>l
|
||||||
|
|
||||||
" Create lines
|
" Delete lines
|
||||||
nnoremap go o<Esc>$
|
|
||||||
nnoremap gO O<Esc>$
|
|
||||||
nnoremap g<CR> i<CR><Esc>l
|
|
||||||
|
|
||||||
" Edit current line
|
|
||||||
nnoremap C cc
|
nnoremap C cc
|
||||||
xnoremap C cc
|
|
||||||
nnoremap D dd
|
nnoremap D dd
|
||||||
xnoremap D dd
|
vnoremap C cc
|
||||||
nnoremap < <<
|
vnoremap D dd
|
||||||
nnoremap > >>
|
|
||||||
|
" Alternative way to enter visual block mode
|
||||||
|
nnoremap <Space>v <C-V>
|
||||||
|
|
||||||
" Indent keeping selection
|
" Indent keeping selection
|
||||||
xnoremap < <gv
|
vnoremap < <gv
|
||||||
xnoremap > >gv
|
vnoremap > >gv
|
||||||
xnoremap = =gv
|
vnoremap = =gv
|
||||||
|
|
||||||
" Extend selection
|
|
||||||
xmap x <Action>(EditorSelectWord)
|
|
||||||
xmap X <Action>(EditorUnSelectWord)
|
|
||||||
|
|
||||||
" Turn capital letters into opposite actions
|
" Turn capital letters into opposite actions
|
||||||
" nnoremap U :redo<CR> " Handled by custom version of IdeaVIM
|
" nnoremap U :redo<CR> " Handled by custom version of IdeaVim
|
||||||
|
|
||||||
" Reselect pasted text
|
" Reselect pasted text
|
||||||
nnoremap gp `[v`]
|
nnoremap gp `[v`]
|
||||||
|
|
||||||
" Put without yank
|
" Put without yank
|
||||||
xnoremap p P
|
xmap p gr
|
||||||
xnoremap P p
|
|
||||||
|
|
||||||
" Clear search highlights
|
|
||||||
nnoremap <Esc> :nohlsearch<Return><Esc>
|
|
||||||
|
|
||||||
" Code completion
|
|
||||||
if &ide !~? 'rider'
|
|
||||||
imap <expr> ! pumvisible() ? '<Action>(EditorChooseLookupItem)<Esc>mzF.bi!<Esc>`zla' : '!'
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Show parameter info
|
|
||||||
nmap <A-p> <Action>(ParameterInfo)
|
|
||||||
imap <A-p> <Action>(ParameterInfo)
|
|
||||||
|
|
||||||
" Navigate back/forward
|
|
||||||
map <BS> <Action>(Back)
|
|
||||||
map <S-BS> <Action>(Forward)
|
|
||||||
|
|
||||||
" Navigate inspection highlights
|
|
||||||
map ( <Action>(GotoPreviousError)
|
|
||||||
map ) <Action>(GotoNextError)
|
|
||||||
|
|
||||||
" Navigate to previous/next method
|
|
||||||
map [ <Action>(MethodUp)
|
|
||||||
map ] <Action>(MethodDown)
|
|
||||||
|
|
||||||
" Navigate paragraphs at indentation
|
|
||||||
map { <Plug>(ParagraphPrevMotion)$
|
|
||||||
map } <Plug>(ParagraphNextMotion)$
|
|
||||||
|
|
||||||
" Move statement/element
|
|
||||||
map <A-S-h> <Action>(MoveElementLeft)
|
|
||||||
map <A-S-l> <Action>(MoveElementRight)
|
|
||||||
|
|
||||||
map <A-S-j> <Action>(MoveStatementDown)
|
|
||||||
map <A-S-k> <Action>(MoveStatementUp)
|
|
||||||
|
|
||||||
" Multiple carets
|
|
||||||
map <expr> <A-j> pumvisible() ? '<Action>(EditorDown)' : '<Action>(EditorCloneCaretBelow)'
|
|
||||||
map <expr> <A-k> pumvisible() ? '<Action>(EditorUp)' : '<Action>(EditorCloneCaretAbove)'
|
|
||||||
|
|
||||||
imap <expr> <A-j> pumvisible() ? '<Action>(EditorDown)' : '<Action>(EditorCloneCaretBelow)'
|
|
||||||
imap <expr> <A-k> pumvisible() ? '<Action>(EditorUp)' : '<Action>(EditorCloneCaretAbove)'
|
|
||||||
|
|
||||||
" Manage editor tabs
|
|
||||||
map <C-w>m <Action>(MoveEditorToOppositeTabGroup)
|
|
||||||
map <C-w>s <Action>(MoveTabDown)
|
|
||||||
map <C-w>u <Action>(Unsplit)
|
|
||||||
map <C-w>U <Action>(UnsplitAll)
|
|
||||||
map <C-w>v <Action>(MoveTabRight)
|
|
||||||
|
|
||||||
noremap <C-w>S <C-w>s
|
|
||||||
noremap <C-w>V <C-w>v
|
|
||||||
|
|
||||||
map <C-w><C-w>a <Action>(CloseAllEditors)
|
|
||||||
map <C-w><C-w>h <Action>(CloseAllToTheLeft)
|
|
||||||
map <C-w><C-w>l <Action>(CloseAllToTheRight)
|
|
||||||
map <C-w><C-w>o <Action>(CloseAllEditorsButActive)
|
|
||||||
|
|
||||||
map \\ <C-w>
|
|
||||||
map \\\\ <C-w><C-w>
|
|
||||||
|
|
||||||
" Rebind repurposed commands
|
|
||||||
noremap g] ]
|
|
||||||
noremap g[ [
|
|
||||||
|
|
||||||
|
" Rebind commands that will be repurposed
|
||||||
|
nnoremap GG G
|
||||||
|
nnoremap dG dG
|
||||||
|
nnoremap cG cG
|
||||||
nnoremap M m
|
nnoremap M m
|
||||||
nnoremap Z z
|
nnoremap Z z
|
||||||
|
map <A-S-n> <A-p>
|
||||||
|
|
||||||
" Repurpose 'Enter' for statement completion
|
" Repurpose 'Enter' for statement completion (renaming function requires a custom version of IdeaVIM)
|
||||||
nmap <Enter> <Action>(EditorCompleteStatement)
|
function! CompleteStatement()
|
||||||
|
if (renaming())
|
||||||
|
" TODO https://github.com/JetBrains/ideavim/discussions/397#discussioncomment-1573048
|
||||||
|
" return "\<Enter>"
|
||||||
|
return "<Enter>"
|
||||||
|
else
|
||||||
|
action EditorCompleteStatement
|
||||||
|
return ""
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
" Repurpose 'g' for navigation (VimJumpToSource requires a custom version of IdeaVIM)
|
nmap <expr> <Enter> CompleteStatement()
|
||||||
map gb <Action>(GotoNextBookmark)
|
|
||||||
map gB <Action>(GotoPreviousBookmark)
|
|
||||||
map gD <Action>(GotoTypeDeclaration)
|
|
||||||
map ge <Action>(VcsShowNextChangeMarker)
|
|
||||||
map gE <Action>(VcsShowPrevChangeMarker)
|
|
||||||
map gf <Action>(VimJumpToSource)<Action>(HideActiveWindow)
|
|
||||||
map gi <Action>(GotoImplementation)
|
|
||||||
map gr <Action>(RecentLocations)
|
|
||||||
map gR <Action>(RecentChangedFiles)
|
|
||||||
map gs <Action>(GotoSuperMethod)
|
|
||||||
map gS <Action>(ShowSiblings)
|
|
||||||
map gt gg<Action>(KM.GotoNextTypeInFile)
|
|
||||||
map gT <Action>(KM.GotoNextTypeInFile)
|
|
||||||
map gu <Action>(ShowUsages)
|
|
||||||
map gU <Action>(FindUsages)
|
|
||||||
|
|
||||||
" Repurpose 'z' for view actions and debugger
|
" Repurpose special characters for navigation
|
||||||
map za <Action>(Annotate)
|
nmap ( :raction GotoPreviousError<CR>
|
||||||
map zb <Action>(ViewBreakpoints)
|
nmap ) :raction GotoNextError<CR>
|
||||||
map zc <Action>(EditorContextInfo)
|
nmap [ :raction MethodUp<CR>
|
||||||
map zd <Action>(CompareClipboardWithSelection)
|
nmap ] :raction MethodDown<CR>
|
||||||
map ze <Action>(ShowErrorDescription)
|
nmap { :raction JumpToLastChange<CR>
|
||||||
map zf <Action>(SelectInProjectView)
|
nmap } :raction JumpToNextChange<CR>
|
||||||
map zi <Action>(ShowHoverInfo)
|
|
||||||
map zm <Action>(ShowBookmarks)
|
|
||||||
map zp <Action>(QuickImplementations)
|
|
||||||
map zP <Action>(QuickTypeDefinition)
|
|
||||||
map zr <Action>(RunToCursor)
|
|
||||||
map zR <Action>(ForceRunToCursor)
|
|
||||||
map zs <Action>(osmedile.intellij.stringmanip.PopupChoiceAction)
|
|
||||||
map zt <Action>(ExpressionTypeInfo)
|
|
||||||
map zx <Action>(EvaluateExpression)
|
|
||||||
|
|
||||||
map zht <Action>(TypeHierarchy)
|
" Repurpose 'g' for navigation (:raction requires a custom version of IdeaVIM)
|
||||||
map zhm <Action>(MethodHierarchy)
|
nmap gb :raction GotoNextBookmark<CR>
|
||||||
|
nmap gB :raction GotoPreviousBookmark<CR>
|
||||||
|
nmap gd :action GotoDeclaration<CR>
|
||||||
|
nmap gD :action GotoTypeDeclaration<CR>
|
||||||
|
nmap ge :raction VcsShowNextChangeMarker<CR>
|
||||||
|
nmap gE :raction VcsShowPrevChangeMarker<CR>
|
||||||
|
map gi :action GotoImplementation<CR>
|
||||||
|
map gj :raction EditorCloneCaretBelow<CR>
|
||||||
|
map gk :raction EditorCloneCaretAbove<CR>
|
||||||
|
nmap go :raction GotoNextElementUnderCaretUsage<CR>
|
||||||
|
nmap gO :raction GotoPrevElementUnderCaretUsage<CR>
|
||||||
|
nmap gr :action RecentLocations<CR>
|
||||||
|
nmap gR :action RecentChangedFiles<CR>
|
||||||
|
map gs :action GotoSuperMethod<CR>
|
||||||
|
map gS :action ShowSiblings<CR>
|
||||||
|
nmap gT /\\<class\>\\\|\\<interface\>\\\|\\<enum\>\\\|\\<object\>\\\|\\<record\>\\\|\\<struct\>\\\|\\<trait\><CR>w:nohlsearch<CR>
|
||||||
|
nmap gt gggT
|
||||||
|
nmap gu :action ShowUsages<CR>
|
||||||
|
nmap gU :action FindUsages<CR>
|
||||||
|
map gz :action NextSplitter<CR>
|
||||||
|
map gZ :action PrevSplitter<CR>
|
||||||
|
|
||||||
if &ide =~? 'rider'
|
" Make bidirectional 'g' commands work with 'G' too
|
||||||
map zhc <Action>(RiderShowIncomingCalls)
|
nmap Gb gb
|
||||||
else
|
nmap GB gB
|
||||||
map zhc <Action>(CallHierarchy)
|
nmap Ge ge
|
||||||
endif
|
nmap GE gE
|
||||||
|
map Gj gj
|
||||||
|
map Gk gk
|
||||||
|
nmap Go go
|
||||||
|
nmap GO gO
|
||||||
|
nmap Gt gt
|
||||||
|
nmap GT gT
|
||||||
|
map Gz gz
|
||||||
|
map GZ gZ
|
||||||
|
|
||||||
nmap zhl <Action>(LocalHistory.ShowHistory)
|
" Repurpose 'z' for view actions, debugger, and tab management
|
||||||
xmap zhl <Action>(LocalHistory.ShowSelectionHistory)
|
map za :action Annotate<CR>
|
||||||
nmap zhg <Action>(Vcs.ShowTabbedFileHistory)
|
map zb :action ViewBreakpoints<CR>
|
||||||
xmap zhg <Action>(Vcs.ShowHistoryForBlock)
|
map zc :action EditorContextInfo<CR>
|
||||||
|
map zd :action QuickJavaDoc<CR>
|
||||||
|
map ze :action ShowErrorDescription<CR>
|
||||||
|
map zf :action SelectInProjectView<CR>
|
||||||
|
map zht :action TypeHierarchy<CR>
|
||||||
|
map zhm :action MethodHierarchy<CR>
|
||||||
|
map zhc :action CallHierarchy<CR>
|
||||||
|
map zm :action ShowBookmarks<CR>
|
||||||
|
map zp :action QuickImplementations<CR>
|
||||||
|
map zP :action QuickTypeDefinition<CR>
|
||||||
|
map zr :action RunToCursor<CR>
|
||||||
|
map zR :action ForceRunToCursor<CR>
|
||||||
|
map zsd :action MoveTabDown<CR>
|
||||||
|
map zsr :action MoveTabRight<CR>
|
||||||
|
map zsu :action Unsplit<CR>
|
||||||
|
map zsU :action UnsplitAll<CR>
|
||||||
|
map zt :action ExpressionTypeInfo<CR>
|
||||||
|
map zx :action EvaluateExpression<CR>
|
||||||
|
|
||||||
" Repurpose 'm' for refactoring
|
" Repurpose 'm' for refactoring (normal mode)
|
||||||
map mc <Action>(IntroduceConstant)
|
nmap mg :action Generate<CR>
|
||||||
map md <Action>(SafeDelete)
|
nmap mi :action Inline<CR>
|
||||||
map me <Action>(Move)
|
nmap mn :action RenameElement<CR>
|
||||||
map mf <Action>(IntroduceField)
|
nmap mo :action OverrideMethods<CR>
|
||||||
map mg <Action>(Generate)
|
nmap ms :action ChangeSignature<CR>
|
||||||
map mi <Action>(Inline)
|
nmap mS :action NewScratchFile<CR>
|
||||||
map mm <Action>(ExtractMethod)
|
|
||||||
map mM <Action>(ExtractFunction)
|
|
||||||
map mn <Action>(RenameElement)
|
|
||||||
map mo <Action>(OverrideMethods)
|
|
||||||
map mp <Action>(IntroduceParameter)
|
|
||||||
map mP <Action>(IntroduceProperty)
|
|
||||||
map mr <Action>(Refactorings.QuickListPopupAction)
|
|
||||||
map ms <Action>(ChangeSignature)
|
|
||||||
map mS <Action>(NewScratchFile)
|
|
||||||
map mt <Action>(InsertLiveTemplate)
|
|
||||||
map mv <Action>(IntroduceVariable)
|
|
||||||
map mw <Action>(SurroundWith)
|
|
||||||
|
|
||||||
" Remap NERDTree bindings
|
" Repurpose 'm' for refactoring (normal / visual mode)
|
||||||
let g:NERDTreeMapOpenVSplit = 'v'
|
nmap mc :action IntroduceConstant<CR>
|
||||||
let g:NERDTreeMapPreviewVSplit = 'gv'
|
vmap mc :action IntroduceConstant<CR>
|
||||||
let g:NERDTreeMapOpenSplit = 's'
|
nmap mf :action IntroduceField<CR>
|
||||||
let g:NERDTreeMapPreviewSplit = 'gs'
|
vmap mf :action IntroduceField<CR>
|
||||||
|
nmap mm :action ExtractMethod<CR>
|
||||||
|
vmap mm :action ExtractMethod<CR>
|
||||||
|
nmap mM :action ExtractFunction<CR>
|
||||||
|
vmap mM :action ExtractFunction<CR>
|
||||||
|
nmap mp :action IntroduceParameter<CR>
|
||||||
|
vmap mp :action IntroduceParameter<CR>
|
||||||
|
nmap mP :action IntroduceProperty<CR>
|
||||||
|
vmap mP :action IntroduceProperty<CR>
|
||||||
|
nmap mr :action Refactorings.QuickListPopupAction<CR>
|
||||||
|
vmap mr :action Refactorings.QuickListPopupAction<CR>
|
||||||
|
nmap mv :action IntroduceVariable<CR>
|
||||||
|
vmap mv :action IntroduceVariable<CR>
|
||||||
|
|
||||||
" Actions for custom version of AceJump
|
" Actions for custom version of AceJump
|
||||||
set acejump
|
map <Space> <Plug>(acejump)
|
||||||
map <Space> <Action>(AceVimAction_JumpAllEditors)
|
map <Space>d :action AceVimAction_GoToDeclaration<CR>
|
||||||
map g<Space> <Action>(AceVimAction_JumpAllEditors_GoToDeclaration)
|
map <Space>D :action AceVimAction_GoToTypeDeclaration<CR>
|
||||||
|
map <Space>i :action AceVimAction_ShowIntentions<CR>
|
||||||
|
map <Space>u :action AceVimAction_ShowUsages<CR>
|
||||||
|
map <Space>U :action AceVimAction_FindUsages<CR>
|
||||||
|
map <Space>r :action AceVimAction_Refactor<CR>
|
||||||
|
map <Space>n :action AceVimAction_Rename<CR>
|
||||||
|
@@ -1,15 +1,10 @@
|
|||||||
set -g default-terminal "screen-256color"
|
set -g default-terminal "screen-256color"
|
||||||
set -g escape-time 0
|
|
||||||
set -g history-limit 50000
|
set -g history-limit 50000
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
||||||
set-window-option -g mode-keys vi
|
set-window-option -g mode-keys vi
|
||||||
|
|
||||||
bind -T copy-mode-vi v send -X begin-selection
|
bind -Tcopy-mode MouseDragEnd1Pane send -X copy-selection-no-clear
|
||||||
bind -T copy-mode-vi C-v send -X rectangle-toggle
|
|
||||||
bind -T copy-mode-vi M-v send -X rectangle-toggle
|
|
||||||
bind -T copy-mode-vi Enter send -X copy-selection-and-cancel
|
|
||||||
unbind -T copy-mode-vi MouseDragEnd1Pane
|
|
||||||
|
|
||||||
bind '"' split-window -c "#{pane_current_path}"
|
bind '"' split-window -c "#{pane_current_path}"
|
||||||
bind % split-window -hc "#{pane_current_path}"
|
bind % split-window -hc "#{pane_current_path}"
|
||||||
|
207
.vimrc
207
.vimrc
@@ -1,83 +1,35 @@
|
|||||||
set autoindent
|
set autoindent
|
||||||
set backspace=indent,eol,start
|
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set guifont=Cascadia_Mono:h12:cANSI:qDRAFT
|
|
||||||
set guioptions-=t " Remove menu tearoff
|
|
||||||
set history=1024
|
set history=1024
|
||||||
set hlsearch
|
set hlsearch
|
||||||
set ignorecase
|
set ignorecase
|
||||||
set incsearch
|
set incsearch
|
||||||
set infercase
|
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
set linebreak
|
|
||||||
set list
|
|
||||||
set listchars=lead:·,trail:·,tab:→\ ,extends:>,precedes:<
|
|
||||||
set modeline
|
|
||||||
set modelines=2
|
|
||||||
set mouse=a
|
set mouse=a
|
||||||
set noerrorbells
|
set noerrorbells
|
||||||
set noshowcmd
|
set noshowcmd
|
||||||
set noshowmode
|
set noshowmode
|
||||||
set nrformats-=octal
|
|
||||||
set number
|
set number
|
||||||
set relativenumber
|
set relativenumber
|
||||||
set scrolloff=999
|
set scrolloff=12
|
||||||
set shiftwidth=0
|
set shiftwidth=0
|
||||||
set shortmess-=S " Show search count
|
|
||||||
set shortmess-=l " Show full description for lines and bytes
|
|
||||||
set showbreak=↪\
|
|
||||||
set showmatch
|
set showmatch
|
||||||
set sidescrolloff=999
|
set sidescrolloff=48
|
||||||
set smartcase
|
set smartcase
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set ttimeout
|
|
||||||
set ttimeoutlen=50
|
|
||||||
set ttymouse=xterm2
|
|
||||||
set virtualedit=onemore
|
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set winaltkeys=no
|
|
||||||
set wrap
|
set wrap
|
||||||
|
|
||||||
" Windows paths
|
" Color support
|
||||||
set packpath=$HOME/.vim,$VIM/vimfiles,$VIMRUNTIME
|
set t_Co=256
|
||||||
set runtimepath=$HOME/.vim,$VIM/vimfiles,$VIMRUNTIME
|
|
||||||
|
|
||||||
" Color scheme
|
" Color scheme
|
||||||
syntax enable
|
syntax enable
|
||||||
|
colorscheme custom
|
||||||
if has("gui_running")
|
highlight LineNr ctermfg=244
|
||||||
colorscheme retrobox
|
highlight IncSearch ctermfg=251 ctermbg=238
|
||||||
highlight NonText ctermfg=14 guifg=#7c6f64
|
highlight Search ctermfg=251 ctermbg=238
|
||||||
else
|
highlight Visual ctermfg=240 ctermbg=250
|
||||||
colorscheme custom
|
|
||||||
highlight LineNr ctermfg=244
|
|
||||||
highlight IncSearch ctermfg=251 ctermbg=238
|
|
||||||
highlight Search ctermfg=251 ctermbg=238
|
|
||||||
highlight Visual ctermfg=240 ctermbg=250
|
|
||||||
endif
|
|
||||||
|
|
||||||
highlight SpecialKey ctermfg=8 guifg=#584f46
|
|
||||||
|
|
||||||
" Windows GUI
|
|
||||||
if has("win32") && has("gui_running")
|
|
||||||
autocmd GUIEnter * simalt ~x " Maximize window
|
|
||||||
autocmd GUIEnter * set visualbell t_vb= " Disable bell sound
|
|
||||||
|
|
||||||
set listchars+=tab:▶\
|
|
||||||
set renderoptions=type:directx " Fix unicode rendering
|
|
||||||
set showbreak=→\
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Fix Alt mappings (https://github.com/vim/vim/issues/2588#issuecomment-697959290)
|
|
||||||
for ord in range(65, 90) + range(97, 122)
|
|
||||||
let char = nr2char(ord)
|
|
||||||
exec printf("set <m-%s>=\<esc>%s", char, char)
|
|
||||||
exec printf("tnoremap <silent> <m-%s> <esc>%s", char, char)
|
|
||||||
endfor
|
|
||||||
|
|
||||||
" Navigate editor tabs
|
|
||||||
noremap <M-h> gT
|
|
||||||
noremap <M-l> gt
|
|
||||||
|
|
||||||
" Map top row on Czech keyboard layout to digits
|
" Map top row on Czech keyboard layout to digits
|
||||||
map + 1
|
map + 1
|
||||||
@@ -92,75 +44,49 @@ map í 9
|
|||||||
map é 0
|
map é 0
|
||||||
|
|
||||||
" Move some commands closer on Czech keyboard layout
|
" Move some commands closer on Czech keyboard layout
|
||||||
map ů %
|
|
||||||
nnoremap ú @@
|
nnoremap ú @@
|
||||||
noremap , +
|
noremap ů ;
|
||||||
|
map § %
|
||||||
|
|
||||||
noremap § `
|
" Navigate to end of previous word
|
||||||
noremap §§ ``
|
nnoremap <A-b> ge
|
||||||
nnoremap m§ m
|
nnoremap <A-S-b> gE
|
||||||
|
|
||||||
sunmap ů
|
" Navigate to indents
|
||||||
sunmap §
|
nnoremap J +
|
||||||
|
vnoremap J +
|
||||||
" Enter visual block mode
|
nnoremap K -
|
||||||
noremap <M-v> <C-v>
|
vnoremap K -
|
||||||
|
|
||||||
" Navigate camel humps (https://github.com/vim-scripts/camelcasemotion)
|
" Navigate camel humps (https://github.com/vim-scripts/camelcasemotion)
|
||||||
map L <Plug>CamelCaseMotion_w
|
map L <Plug>CamelCaseMotion_w
|
||||||
map H <Plug>CamelCaseMotion_b
|
map H <Plug>CamelCaseMotion_b
|
||||||
sunmap L
|
|
||||||
sunmap H
|
|
||||||
|
|
||||||
|
" Edit camel humps (https://github.com/vim-scripts/camelcasemotion)
|
||||||
omap iL <Plug>CamelCaseMotion_iw
|
omap iL <Plug>CamelCaseMotion_iw
|
||||||
xmap iL <Plug>CamelCaseMotion_iw
|
xmap iL <Plug>CamelCaseMotion_iw
|
||||||
omap iH <Plug>CamelCaseMotion_ib
|
omap iH <Plug>CamelCaseMotion_ib
|
||||||
xmap iH <Plug>CamelCaseMotion_ib
|
xmap iH <Plug>CamelCaseMotion_ib
|
||||||
|
|
||||||
" Navigate to end of previous word
|
|
||||||
noremap <M-b> ge
|
|
||||||
noremap <M-S-b> gE
|
|
||||||
|
|
||||||
" Navigate soft-wrapped lines
|
|
||||||
nnoremap <expr> j v:count ? 'j' : 'gj'
|
|
||||||
xnoremap <expr> j v:count ? 'j' : 'gj'
|
|
||||||
nnoremap <expr> k v:count ? 'k' : 'gk'
|
|
||||||
xnoremap <expr> k v:count ? 'k' : 'gk'
|
|
||||||
|
|
||||||
nnoremap gj j
|
|
||||||
xnoremap gj j
|
|
||||||
nnoremap gk k
|
|
||||||
xnoremap gk k
|
|
||||||
|
|
||||||
" Navigate unmatched parentheses/braces
|
|
||||||
noremap g( [(
|
|
||||||
noremap g) ])
|
|
||||||
noremap g{ [{
|
|
||||||
noremap g} ]}
|
|
||||||
|
|
||||||
" Edit from cursor to start/end of parenthesized block
|
" Edit from cursor to start/end of parenthesized block
|
||||||
nnoremap c) c])
|
nnoremap c) c])
|
||||||
nnoremap d) d])
|
nnoremap d) d])
|
||||||
nnoremap c( c[((
|
nnoremap c( c[((
|
||||||
nnoremap d( c[((<Esc>l
|
nnoremap d( c[((<ESC>l
|
||||||
|
|
||||||
" Create lines
|
" Delete lines
|
||||||
nnoremap go o<Esc>$
|
|
||||||
nnoremap gO O<Esc>$
|
|
||||||
nnoremap g<CR> i<CR><Esc>l
|
|
||||||
|
|
||||||
" Edit current line
|
|
||||||
nnoremap C cc
|
nnoremap C cc
|
||||||
xnoremap C cc
|
|
||||||
nnoremap D dd
|
nnoremap D dd
|
||||||
xnoremap D dd
|
vnoremap C cc
|
||||||
nnoremap < <<
|
vnoremap D dd
|
||||||
nnoremap > >>
|
|
||||||
|
" Alternative way to enter visual block mode
|
||||||
|
nnoremap <Space>v <C-V>
|
||||||
|
|
||||||
" Indent keeping selection
|
" Indent keeping selection
|
||||||
xnoremap < <gv
|
vnoremap < <gv
|
||||||
xnoremap > >gv
|
vnoremap > >gv
|
||||||
xnoremap = =gv
|
vnoremap = =gv
|
||||||
|
|
||||||
" Turn capital letters into opposite actions
|
" Turn capital letters into opposite actions
|
||||||
nnoremap U :redo<CR>
|
nnoremap U :redo<CR>
|
||||||
@@ -169,81 +95,14 @@ nnoremap U :redo<CR>
|
|||||||
nnoremap gp `[v`]
|
nnoremap gp `[v`]
|
||||||
|
|
||||||
" Put without yank
|
" Put without yank
|
||||||
xnoremap p P
|
xmap p gr
|
||||||
xnoremap P p
|
|
||||||
|
|
||||||
" Clear search highlights
|
|
||||||
nnoremap <Esc> :nohlsearch<Return><Esc>
|
|
||||||
|
|
||||||
" Use Ctrl for selection and clipboard
|
|
||||||
nnoremap <C-a> ggVG
|
|
||||||
xnoremap <C-a> ggoG
|
|
||||||
|
|
||||||
xnoremap <C-c> "+y
|
|
||||||
xnoremap <C-x> "+x
|
|
||||||
|
|
||||||
noremap <C-v> "+gP
|
|
||||||
inoremap <C-v> <C-o>:set paste<CR><C-r>+<C-o>:set nopaste<CR>
|
|
||||||
cnoremap <C-v> <C-r>+
|
|
||||||
|
|
||||||
nnoremap <C-s> :w<CR>
|
|
||||||
xnoremap <C-s> :<C-U>w<CR>gv
|
|
||||||
inoremap <C-s> <C-o>:w<CR>
|
|
||||||
|
|
||||||
" Update search register when using f/t
|
|
||||||
function FindChar(action, reverse, search_affix)
|
|
||||||
let t:reverse_search = a:reverse
|
|
||||||
let char = nr2char(getchar())
|
|
||||||
|
|
||||||
if char == '\'
|
|
||||||
let query = '\\'
|
|
||||||
else
|
|
||||||
let query = '\C\V'.char.'\v'
|
|
||||||
endif
|
|
||||||
|
|
||||||
if a:reverse
|
|
||||||
call setreg('/', query.a:search_affix)
|
|
||||||
else
|
|
||||||
call setreg('/', a:search_affix.query)
|
|
||||||
endif
|
|
||||||
|
|
||||||
nohlsearch
|
|
||||||
execute 'normal! '.a:action.char
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function FindCharVisual(action, reverse, search_affix)
|
|
||||||
normal gv
|
|
||||||
call FindChar(a:action, a:reverse, a:search_affix)
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function! ResetReverseSearchFlag()
|
|
||||||
if getcmdtype() =~ "[/?]"
|
|
||||||
let t:reverse_search = 0
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
nmap f :call FindChar('f', 0, '')<CR>
|
|
||||||
nmap F :call FindChar('F', 1, '')<CR>
|
|
||||||
nmap t :call FindChar('t', 0, '\zs.\ze')<CR>
|
|
||||||
nmap T :call FindChar('T', 1, '\zs.\ze')<CR>
|
|
||||||
|
|
||||||
xmap f :call FindCharVisual('f', 0, '')<CR>
|
|
||||||
xmap F :call FindCharVisual('F', 1, '')<CR>
|
|
||||||
xmap t :call FindCharVisual('t', 0, '\zs.\ze')<CR>
|
|
||||||
xmap T :call FindCharVisual('T', 1, '\zs.\ze')<CR>
|
|
||||||
|
|
||||||
noremap <expr> n 'nN'[t:reverse_search]
|
|
||||||
noremap <expr> N 'Nn'[t:reverse_search]
|
|
||||||
|
|
||||||
cnoremap <CR> <cmd>call ResetReverseSearchFlag()<CR><CR>
|
|
||||||
|
|
||||||
" Plugin: https://github.com/easymotion/vim-easymotion.git
|
" Plugin: https://github.com/easymotion/vim-easymotion.git
|
||||||
nmap <Space> <Plug>(easymotion-overwin-f)
|
map <Space> <Plug>(easymotion-prefix)
|
||||||
xmap <Space> <Plug>(easymotion-s)
|
|
||||||
omap <Space> <Plug>(easymotion-s)
|
|
||||||
|
|
||||||
" Plugin: https://github.com/machakann/vim-highlightedyank
|
" Plugin: https://github.com/machakann/vim-highlightedyank
|
||||||
let g:highlightedyank_highlight_duration = 500
|
let g:highlightedyank_highlight_duration = 500
|
||||||
|
|
||||||
" Plugin: https://github.com/luochen1990/rainbow
|
" Plugin: https://github.com/luochen1990/rainbow
|
||||||
let g:rainbow_active = 1
|
let g:rainbow_active = 1
|
||||||
|
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
/* Reload/stop buttons */
|
/* Reload/stop buttons */
|
||||||
|
|
||||||
#reload-button, #stop-button {
|
#reload-button, #stop-button {
|
||||||
display: flex !important;
|
display: -moz-box !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#stop-reload-button .toolbarbutton-icon {
|
#stop-reload-button .toolbarbutton-icon {
|
||||||
@@ -57,10 +57,6 @@
|
|||||||
|
|
||||||
/* Tabs & toolbars */
|
/* Tabs & toolbars */
|
||||||
|
|
||||||
#navigator-toolbox {
|
|
||||||
border-bottom: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#toolbar-menubar {
|
#toolbar-menubar {
|
||||||
min-height: 21px !important;
|
min-height: 21px !important;
|
||||||
}
|
}
|
||||||
@@ -108,33 +104,23 @@
|
|||||||
padding: 0 1px !important;
|
padding: 0 1px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tab playback icons */
|
|
||||||
|
|
||||||
.tabbrowser-tab:not([pinned]) .tab-icon-stack:is([muted], [soundplaying], [activemedia-blocked]) {
|
|
||||||
grid-template-areas: "a s";
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabbrowser-tab:not([pinned]) .tab-icon-overlay:is([muted], [soundplaying], [activemedia-blocked]) {
|
|
||||||
grid-area: a !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabbrowser-tab:not([pinned]) .tab-icon-stack[indicator-replaces-favicon] > :not(&) {
|
|
||||||
opacity: 1 !important;
|
|
||||||
grid-area: s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Address bar */
|
/* Address bar */
|
||||||
|
|
||||||
#urlbar-container {
|
#urlbar-container {
|
||||||
--urlbar-container-height: 34px !important;
|
--urlbar-container-height: 34px !important;
|
||||||
|
margin-top: -2px !important;
|
||||||
margin-inline: 3px !important;
|
margin-inline: 3px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#urlbar {
|
||||||
|
margin: 1px 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
#urlbar .urlbarView-row-inner {
|
#urlbar .urlbarView-row-inner {
|
||||||
padding-block: 4px !important;
|
padding-block: 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#urlbar .search-one-offs:not([hidden]) {
|
#urlbar .search-one-offs:not([hidden]){
|
||||||
padding-block: 4px !important;
|
padding-block: 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,6 +140,7 @@
|
|||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
-moz-padding-start: 0 !important;
|
-moz-padding-start: 0 !important;
|
||||||
-moz-padding-end: 0 !important;
|
-moz-padding-end: 0 !important;
|
||||||
|
border-top: 1px solid var(--chrome-content-separator-color) !important;
|
||||||
background-color: #0E0E0E !important;
|
background-color: #0E0E0E !important;
|
||||||
z-index: 1000 !important;
|
z-index: 1000 !important;
|
||||||
}
|
}
|
||||||
@@ -168,8 +155,7 @@
|
|||||||
|
|
||||||
#PersonalToolbar .toolbarbutton-1 {
|
#PersonalToolbar .toolbarbutton-1 {
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
padding: 3px 0 !important;
|
padding: 3px 4px !important;
|
||||||
--toolbarbutton-inner-padding: 6px !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#PersonalToolbar .toolbarbutton-icon {
|
#PersonalToolbar .toolbarbutton-icon {
|
||||||
|
@@ -12,19 +12,12 @@
|
|||||||
- { name: "highlighted-yank" , repo: "https://github.com/machakann/vim-highlightedyank.git" }
|
- { name: "highlighted-yank" , repo: "https://github.com/machakann/vim-highlightedyank.git" }
|
||||||
- { name: "indent-object" , repo: "https://github.com/michaeljsmith/vim-indent-object.git" }
|
- { name: "indent-object" , repo: "https://github.com/michaeljsmith/vim-indent-object.git" }
|
||||||
- { name: "lightline" , repo: "https://github.com/itchyny/lightline.vim.git" }
|
- { name: "lightline" , repo: "https://github.com/itchyny/lightline.vim.git" }
|
||||||
- { name: "paragraph-motion" , repo: "https://github.com/dbakker/vim-paragraph-motion.git" }
|
|
||||||
- { name: "rainbow" , repo: "https://github.com/luochen1990/rainbow.git" }
|
- { name: "rainbow" , repo: "https://github.com/luochen1990/rainbow.git" }
|
||||||
- { name: "repeat" , repo: "https://github.com/tpope/vim-repeat.git" }
|
- { name: "repeat" , repo: "https://github.com/tpope/vim-repeat.git" }
|
||||||
|
- { name: "replace-with-register" , repo: "https://github.com/vim-scripts/ReplaceWithRegister.git" }
|
||||||
- { name: "sleuth" , repo: "https://github.com/tpope/vim-sleuth.git" }
|
- { name: "sleuth" , repo: "https://github.com/tpope/vim-sleuth.git" }
|
||||||
- { name: "surround" , repo: "https://github.com/tpope/vim-surround.git" }
|
- { name: "surround" , repo: "https://github.com/tpope/vim-surround.git" }
|
||||||
- { name: "visual-multi" , repo: "https://github.com/mg979/vim-visual-multi.git" }
|
- { name: "visual-multi" , repo: "https://github.com/mg979/vim-visual-multi.git" }
|
||||||
- { name: "visual-star-search" , repo: "https://github.com/nelstrom/vim-visual-star-search.git" }
|
- { name: "visual-star-search" , repo: "https://github.com/nelstrom/vim-visual-star-search.git" }
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.name }}"
|
label: "{{ item.name }}"
|
||||||
|
|
||||||
- name: Delete unused vim plugins
|
|
||||||
file:
|
|
||||||
path: "~/.vim/pack/plugins/start/{{ item }}"
|
|
||||||
state: absent
|
|
||||||
loop:
|
|
||||||
- "replace-with-register"
|
|
||||||
|
Reference in New Issue
Block a user