Compare commits
10 Commits
25dcf7bc21
...
d41b681d45
Author | SHA1 | Date | |
---|---|---|---|
d41b681d45 | |||
850bbd1d8a | |||
96c28df07a | |||
f932f42ff5 | |||
72b02f7feb | |||
b090058656 | |||
291b2d277b | |||
ba10249351 | |||
9164eef136 | |||
27e67dc07b |
2
aliases
2
aliases
@ -6,7 +6,7 @@ alias rgrep='grep -r -i --color=auto'
|
|||||||
|
|
||||||
# some more ls aliases
|
# some more ls aliases
|
||||||
alias ll='ls -l'
|
alias ll='ls -l'
|
||||||
alias la='ls -A'
|
alias la='ls -alh'
|
||||||
alias l='ls -CF'
|
alias l='ls -CF'
|
||||||
alias sl='ls'
|
alias sl='ls'
|
||||||
alias ks='ls'
|
alias ks='ls'
|
||||||
|
6
bashrc
6
bashrc
@ -86,3 +86,9 @@ if ! shopt -oq posix; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
export PATH=$PATH:/home/zul/.local/bin
|
export PATH=$PATH:/home/zul/.local/bin
|
||||||
|
if [ -f /usr/share/powerline/bindings/bash/powerline.sh ]; then
|
||||||
|
powerline-daemon -q
|
||||||
|
POWERLINE_BASH_CONTINUATION=1
|
||||||
|
POWERLINE_BASH_SELECT=1
|
||||||
|
. /usr/share/powerline/bindings/bash/powerline.sh
|
||||||
|
fi
|
||||||
|
@ -16,5 +16,5 @@ done
|
|||||||
if [ ! -e $HOME/.$link ]; then
|
if [ ! -e $HOME/.$link ]; then
|
||||||
ln -s $(pwd)/sshconfig $HOME/.ssh/config;
|
ln -s $(pwd)/sshconfig $HOME/.ssh/config;
|
||||||
fi
|
fi
|
||||||
|
git clone https://github.com/VundleVim/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim
|
||||||
cat $(pwd)/pubkeys/* > $HOME/.ssh/authorized_keys
|
cat $(pwd)/pubkeys/* > $HOME/.ssh/authorized_keys
|
||||||
|
0
pfsense.crt
Executable file → Normal file
0
pfsense.crt
Executable file → Normal file
1
pubkeys/l590
Normal file
1
pubkeys/l590
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILS2pBZv4d1HB2+lj0KE4POk1ZIa30f+14kZEdnGmJu4 zul@L590
|
19
sshconfig
19
sshconfig
@ -79,9 +79,28 @@ Host t590
|
|||||||
User zul
|
User zul
|
||||||
Host wow
|
Host wow
|
||||||
Hostname 192.168.15.25
|
Hostname 192.168.15.25
|
||||||
|
User root
|
||||||
Host azubivm
|
Host azubivm
|
||||||
Hostname 10.10.20.63
|
Hostname 10.10.20.63
|
||||||
User ckoptein
|
User ckoptein
|
||||||
Host ilias
|
Host ilias
|
||||||
Hostname 185.201.146.18
|
Hostname 185.201.146.18
|
||||||
User root
|
User root
|
||||||
|
Host router
|
||||||
|
Hostname 192.168.15.1
|
||||||
|
User root
|
||||||
|
Host e15server
|
||||||
|
Hostname 192.168.15.21
|
||||||
|
User root
|
||||||
|
Host e15server.vpn
|
||||||
|
Hostname 10.8.0.23
|
||||||
|
User root
|
||||||
|
host l590.vpn
|
||||||
|
Hostname 10.8.0.6
|
||||||
|
User zul
|
||||||
|
host hpsrv.vpn
|
||||||
|
Hostname 10.8.0.24
|
||||||
|
User root
|
||||||
|
host hpsrv
|
||||||
|
Hostname 192.168.15.19
|
||||||
|
User root
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit ff0f9a45a5d81d2c8aa67601c264b18c4fe26b15
|
Subproject commit 02894b6ef4752afd8579fc837aec5fb4f62409f7
|
@ -1 +1 @@
|
|||||||
Subproject commit 05d7843412c4fb7d1bdafefd04462ac4db841f0f
|
Subproject commit 4624dc223bf574aa9a731c2383c579847303c380
|
@ -1 +1 @@
|
|||||||
Subproject commit dac8e5c2d85926df92672bf2afb4fc48656d96c7
|
Subproject commit 64d6cafb9dcbacce18c26d7daf617ebb96b273f3
|
4
vimrc
4
vimrc
@ -79,10 +79,12 @@ call vundle#begin()
|
|||||||
Plugin 'VundleVim/Vundle.vim'
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
Plugin 'tomasiser/vim-code-dark'
|
Plugin 'tomasiser/vim-code-dark'
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
Plugin 'git://git.wincent.com/command-t.git'
|
|
||||||
Plugin 'vim-airline/vim-airline'
|
Plugin 'vim-airline/vim-airline'
|
||||||
Plugin 'vim-airline/vim-airline-themes'
|
Plugin 'vim-airline/vim-airline-themes'
|
||||||
Plugin 'preservim/nerdtree'
|
Plugin 'preservim/nerdtree'
|
||||||
|
Plugin 'fholgado/minibufexpl.vim'
|
||||||
|
Plugin 'mzlogin/vim-markdown-toc'
|
||||||
|
Plugin 'mzlogin/vim-kramdown-tab'
|
||||||
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
||||||
" 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
|
||||||
|
Loading…
Reference in New Issue
Block a user