Browse Source

update .vimrc & .bashrc, add vpn-local-conection.sh

master
arnaucube 4 years ago
parent
commit
4adf0b15e3
3 changed files with 15 additions and 2 deletions
  1. +4
    -1
      .bashrc
  2. +9
    -1
      .vimrc
  3. +2
    -0
      vpn-local-conection.sh

+ 4
- 1
.bashrc

@ -10,7 +10,10 @@ parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;95m\]$(parse_git_branch)\[\033[00m\]\$ '
# for username green:
# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;95m\]$(parse_git_branch)\[\033[00m\]\$ '
# for username pink:
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;95m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi

+ 9
- 1
.vimrc

@ -2,6 +2,7 @@ call plug#begin(expand('~/.vim/plugged'))
Plug 'scrooloose/nerdtree'
map <C-n> :NERDTreeToggle<CR>
let NERDTreeShowHidden=1
"" Color
Plug 'tomasr/molokai'
@ -18,9 +19,16 @@ set title
set titlestring=vim-%F
set t_Co=256
set cursorline
set background=dark " for the dark version
if $COLORTERM == 'gnome-terminal'
set term=gnome-256color
else
if $TERM == 'xterm'
set term=xterm-256color
endif
endif
" abbreviations
cnoreabbrev W! w!
cnoreabbrev Q! q!

+ 2
- 0
vpn-local-conection.sh

@ -0,0 +1,2 @@
sudo ufw allow in on wlp2s0 from 192.168.1.0/24
sudo ufw allow out on wlp2s0 to 192.168.1.0/24

Loading…
Cancel
Save