diff options
author | Vasil Zlatanov <v@skozl.com> | 2016-10-25 00:53:44 +0100 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2016-10-25 00:53:44 +0100 |
commit | 742c25f8762a5be95f26c4dfbd10485e3e03de6a (patch) | |
tree | 727000fe26f8a44d2f3b7eacdf849f59768ea759 | |
parent | 387cedb209623e572a9083346cae05b671054047 (diff) | |
parent | 3f085f15573ad6e5e8bc08963e84256340a1edc4 (diff) | |
download | dotfiles-742c25f8762a5be95f26c4dfbd10485e3e03de6a.tar.gz dotfiles-742c25f8762a5be95f26c4dfbd10485e3e03de6a.tar.bz2 dotfiles-742c25f8762a5be95f26c4dfbd10485e3e03de6a.zip |
Merge branch 'master' of github.com:vaskozl/dotfiles
-rw-r--r-- | Browser/vimb/config.static | 2 | ||||
-rw-r--r-- | Editor/vimrc | 24 | ||||
-rw-r--r-- | Shell/bash_aliases | 9 |
3 files changed, 22 insertions, 13 deletions
diff --git a/Browser/vimb/config.static b/Browser/vimb/config.static index d670e39..af7c4c9 100644 --- a/Browser/vimb/config.static +++ b/Browser/vimb/config.static @@ -1,6 +1,6 @@ set useragent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 -set scripts=false +set scripts=true set spacial-navigation=true diff --git a/Editor/vimrc b/Editor/vimrc index 7aef0da..33e42e0 100644 --- a/Editor/vimrc +++ b/Editor/vimrc @@ -1,19 +1,18 @@ set nocompatible " be iMproved, required filetype off " required -"set rtp+=~/.vim/bundle/Vundle.vim -"call vundle#begin() -" -"Plugin 'scrooloose/syntastic' -" -"Plugin 'SirVer/ultisnips' -"Plugin 'honza/vim-snippets' -" -"Plugin 'tpope/vim-surround' +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +Plugin 'scrooloose/syntastic' +Plugin 'SirVer/ultisnips' +Plugin 'honza/vim-snippets' +Plugin 'tpope/vim-surround' +Plugin 'takac/vim-hardtime' -"call vundle#end() " required + +call vundle#end() " required filetype plugin indent on " required ""Syntastic settings @@ -157,3 +156,8 @@ nnoremap <Leader>w :w<CR> "relative number in normal but just number in insert autocmd InsertEnter * :set norelativenumber autocmd InsertLeave * :set relativenumber + +let g:hardtime_maxcount = 2 +let g:hardtime_default_on = 1 +let g:hardtime_showmsg = 0 +let g:hardtime_allow_different_key = 1 diff --git a/Shell/bash_aliases b/Shell/bash_aliases index 2b29a2d..c829367 100644 --- a/Shell/bash_aliases +++ b/Shell/bash_aliases @@ -1,6 +1,13 @@ #if you wanna change timezone just copy one of /usr/share/zoneinfo/place to /etc/localtime # awesome perl echo 'one two three'| perl -lne 'print $2 if /one(.*)three/' + +#exit +alias e='disown; exit' + + +alias ,.='!!' + # mpv alias mpvl='mpv --ytdl-format=43' @@ -49,8 +56,6 @@ alias home='cd /home/vasko' alias l='ls' alias d='ls' alias dm='ls | more' -alias e='cd' -alias en='cd ..' alias n='clear' alias s='sudo' alias m='mv' |