merge: work

This commit is contained in:
AngeD 2022-09-07 08:37:16 +02:00
parent 2bf70c2cfa
commit c7f0380f1d
2 changed files with 2 additions and 8 deletions

View File

@ -46,12 +46,6 @@ vim.wo.cc = "80"
-- terminal escape key
vim.keymap.set("t", "<Esc>", "<C-\\><C-n>" )
-- movement keys
vim.keymap.set("n", "<C-h>", "<C-w>h" )
vim.keymap.set("n", "<C-j>", "<C-w>j" )
vim.keymap.set("n", "<C-k>", "<C-w>k" )
vim.keymap.set("n", "<C-l>", "<C-w>l" )
-- go to file:line instead of just file
vim.keymap.set("n", "gf", "gF" )

View File

@ -11,8 +11,8 @@ alias dkcpf='docker container prune -f'
alias dkcrm='docker container rm'
alias dkcrmf='docker container rm -f'
alias dkex='docker container exec -i -t'
alias dklo='docker container logs -f'
alias dkr='docker container run -i -t'
alias dklo='docker logs -f'
alias dkr='docker run -i -t'
# images
alias dkb='docker build .'