From ad8c9855714af82168e46b5fa2dbfc89cf348e2b Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Mon, 20 May 2019 16:56:40 +0200 Subject: [PATCH] Add alias for apt install --- init.vim | 2 +- zsh/aliases.zsh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/init.vim b/init.vim index 42126b9..81285f4 100644 --- a/init.vim +++ b/init.vim @@ -136,7 +136,7 @@ set textwidth=100 set history=1000 set wildignore+=node_modules " ignore node_modules folder from file search -set inccommand=split +set inccommand=split " show interactive results of substiute command " make comments and HTML attributes italic highlight Comment cterm=italic diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 3c64c72..eda2bca 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -1,6 +1,7 @@ # in case its not already thera alias la='ls -la' alias sagu='sudo apt update && sudo apt dist-upgrade' +alias sagi='sudo apt install ' alias v='f -e vim' # quick opening files with vim alias o='a -e xdg-open' # quick opening files with xdg-open