Add and fix some stuff
This commit is contained in:
parent
a7b9cb6d55
commit
0f5f8c21fd
5 changed files with 5 additions and 3 deletions
|
@ -7,6 +7,7 @@ alias .ezsh='$EDITOR $HOME/.config/zsh/.zshrc'
|
|||
alias .f='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||
|
||||
alias aliases='$EDITOR ~/.config/aliasrc && source ~/.config/aliasrc'
|
||||
alias artisan='./artisan'
|
||||
|
||||
alias bfg='java -jar ~/tools/bfg-1.13.0.jar'
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ call plug#begin('~/.config/vim/plugged')
|
|||
Plug 'drmikehenry/vim-headerguard'
|
||||
"Emmet is a plugin which greatly improves HTML & CSS workflow
|
||||
Plug 'mattn/emmet-vim'
|
||||
Plug 'easymotion/vim-easymotion'
|
||||
|
||||
" Eye-Candy
|
||||
Plug 'machakann/vim-highlightedyank'
|
||||
|
@ -99,6 +100,7 @@ endif
|
|||
|
||||
map <leader>b :Break<CR>
|
||||
map <leader>n :NERDTreeToggle<CR>
|
||||
map <Leader>m <Plug>(easymotion-prefix)
|
||||
|
||||
nnoremap <CR> :noh<CR><CR>
|
||||
|
||||
|
|
|
@ -91,6 +91,7 @@ plugins=(
|
|||
httpie
|
||||
jump
|
||||
kubectl
|
||||
laravel5
|
||||
safe-paste
|
||||
vi-mode
|
||||
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
#!/usr/bin/sh
|
||||
|
||||
sudo echo
|
||||
|
||||
paru -Syu
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
echo "#Server = https://archive.archlinux.org/repos/$(date +"%Y/%m/%d")/\$repo/os/\$arch"
|
||||
|
||||
curl -Ls "https://www.archlinux.org/mirrorlist/?country=AT&country=BY&country=BE&country=BA&country=BG&country=HR&country=CZ&country=DK&country=FI&country=FR&country=DE&country=GR&country=HU&country=IS&country=IE&country=IT&country=LV&country=LT&country=LU&country=NL&country=MK&country=NO&country=PL&country=PT&country=RO&country=RS&country=SK&country=SI&country=ES&country=SE&country=CH&country=UA&country=GB&protocol=https&ip_version=4" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 25 -
|
||||
curl -Ls "https://archlinux.org/mirrorlist/?country=AT&country=BE&country=CZ&country=DK&country=FI&country=FR&country=DE&country=IT&country=LU&country=NL&country=PL&protocol=https&ip_version=4" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 25 -
|
||||
|
|
Loading…
Reference in a new issue