Modified the contents of files
This commit is contained in:
parent
148eb9ba44
commit
bbe488beb3
@ -41,7 +41,7 @@ while getopts ":shbc" VALUE "$@"; do
|
||||
ln -s $ABSPATH/shells/zshrc ~/.zshrc
|
||||
for i in lpr oh-my-git-themes omg zsh-syntax-highlighting; do
|
||||
if [ ! -d ~/.zsh-git/$i ]; then
|
||||
git clone https://austenwares.com/gogs/stonewareslord/$i.git ~/.zsh-git/$i
|
||||
git clone https://austenwares.com/gitea/stonewareslord/$i.git ~/.zsh-git/$i
|
||||
else
|
||||
\cd ~/.zsh-git/$i
|
||||
git pull
|
||||
@ -50,7 +50,7 @@ while getopts ":shbc" VALUE "$@"; do
|
||||
done
|
||||
fi
|
||||
if [ ! -d ~/.fzf ] ; then
|
||||
git clone https://austenwares.com/gogs/stonewareslord/fzf.git ~/.fzf
|
||||
git clone https://austenwares.com/gitea/stonewareslord/fzf.git ~/.fzf
|
||||
~/.fzf/install -y
|
||||
fi
|
||||
else
|
||||
|
@ -3,7 +3,8 @@
|
||||
!URxvt.boldFont: -*-*-*-*-*-*-*-*-*-*-*-*-*-*
|
||||
!URxvt.font: xft:Fixed:style=SemiCondensed:size=10
|
||||
!URxvt.font: xft:Inconsolata:size=12
|
||||
URxvt.font: xft:Courier New:size=12
|
||||
URxvt.font: xft:Terminus:size=14
|
||||
!URxvt.font: xft:Courier New:size=12
|
||||
!URxvt.faceName: -*-*-*-*-*-*-10-*-*-*-*-*-*-*
|
||||
!URxvt.font: xft:Fixed:style=SemiCondensed:size=16
|
||||
|
||||
|
@ -99,14 +99,14 @@ dedir(){
|
||||
}
|
||||
mt(){
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Opts:\nm xe gogs dm syncthing g" >&2
|
||||
echo "Opts:\nm xe gitea dm syncthing g" >&2
|
||||
return 1
|
||||
fi
|
||||
case $1 in
|
||||
m) sudo multitail /var/log/messages;;
|
||||
xe) multitail ~/.xsession-errors;;
|
||||
ef) sudo multitail /var/log/emerge-fetch.log;;
|
||||
gogs) sudo multitail /var/log/gogs.{err,log};;
|
||||
gitea) sudo multitail /var/log/gitea.{err,log};;
|
||||
dm) dmesg -w;;
|
||||
syncthing) sudo multitail /var/log/syncthing.{err,log};;
|
||||
g) sudo watch -c genlop -tc;;
|
||||
@ -458,7 +458,7 @@ create-repo(){
|
||||
read username
|
||||
echo -n "Password: "
|
||||
read -s password
|
||||
curl --user "$username:$password" -d name="$1" -d private="$PRIVATE" https://austenwares.com/gogs/api/v1/user/repos
|
||||
curl --user "$username:$password" -d name="$1" -d private="$PRIVATE" https://austenwares.com/gitea/api/v1/user/repos
|
||||
}
|
||||
hsh(){
|
||||
FILE="$1"
|
||||
|
64
vim/vimrc
64
vim/vimrc
@ -253,77 +253,77 @@ else
|
||||
call plug#begin('~/.vim/plugged')
|
||||
endif
|
||||
" Code writing {
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-autoformat', { 'on': 'Autoformat'}
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-autoformat', { 'on': 'Autoformat'}
|
||||
"Adds autoformat command | https://github.com/Chiel92/vim-autoformat
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-surround'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-surround'
|
||||
"Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround
|
||||
Plug 'https://austenwares.com/gogs/vim/syntastic'
|
||||
Plug 'https://austenwares.com/gitea/vim/syntastic'
|
||||
"Syntax checker | https://github.com/scrooloose/syntastic
|
||||
Plug 'https://austenwares.com/gogs/vim/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
Plug 'https://austenwares.com/gitea/vim/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
"File browser | https://github.com/scrooloose/nerdtree
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-easymotion'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-easymotion'
|
||||
"Move around quickly in a document | https://github.com/Lokaltog/vim-easymotion
|
||||
Plug 'https://austenwares.com/gogs/vim/gundo.vim', { 'on': 'GundoToggle' }
|
||||
Plug 'https://austenwares.com/gitea/vim/gundo.vim', { 'on': 'GundoToggle' }
|
||||
"Visual undo | https://github.com/sjl/gundo.vim
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-exchange'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-exchange'
|
||||
"Exchange two selections of text | https://github.com/tommcdo/vim-exchange
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-repeat'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-repeat'
|
||||
"Repeat last tpope command with . | https://github.com/tpope/vim-repeat
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-fugitive', { 'on': ['Gstatus','Gcommit'] }
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-fugitive', { 'on': ['Gstatus','Gcommit'] }
|
||||
"Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive
|
||||
Plug 'https://austenwares.com/gogs/vim/ctrlp.vim'
|
||||
Plug 'https://austenwares.com/gitea/vim/ctrlp.vim'
|
||||
"Fuzzy file search | https://github.com/kien/ctrlp.vim
|
||||
Plug 'https://austenwares.com/gogs/vim/tabular', { 'on': 'Tab' }
|
||||
Plug 'https://austenwares.com/gitea/vim/tabular', { 'on': 'Tab' }
|
||||
"Quickly make tables in vim | https://github.com/godlygeek/tabular
|
||||
Plug 'https://austenwares.com/gogs/vim/UltiSnips'
|
||||
Plug 'https://austenwares.com/gitea/vim/UltiSnips'
|
||||
"Adds snippet support | https://github.com/sirver/UltiSnips
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-snippets'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-snippets'
|
||||
"Add snippets | https://github.com/honza/vim-snippets
|
||||
Plug 'https://austenwares.com/gogs/vim/eregex.vim'
|
||||
Plug 'https://austenwares.com/gitea/vim/eregex.vim'
|
||||
"Real regexes in vim | https://github.com/othree/eregex.vim
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-signify'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-signify'
|
||||
"Git information inline | https://github.com/mhinz/vim-signify
|
||||
Plug 'https://austenwares.com/gogs/vim/auto-pairs'
|
||||
Plug 'https://austenwares.com/gitea/vim/auto-pairs'
|
||||
"Automatic pairs | https://github.com/jiangmiao/auto-pairs
|
||||
Plug 'https://austenwares.com/gogs/vim/YouCompleteMe'
|
||||
Plug 'https://austenwares.com/gitea/vim/YouCompleteMe'
|
||||
"Autocompletion | https://github.com/Valloric/YouCompleteMe
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-java-getset.git'
|
||||
"Java getters and setters| https://austenwares.com/gogs/vim/vim-java-getset.git
|
||||
Plug 'https://austenwares.com/gogs/vim/double-tap.git'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-java-getset.git'
|
||||
"Java getters and setters| https://austenwares.com/gitea/vim/vim-java-getset.git
|
||||
Plug 'https://austenwares.com/gitea/vim/double-tap.git'
|
||||
"Double tap for comments
|
||||
" }
|
||||
" Style {
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-indent-guides'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-indent-guides'
|
||||
"Indentation guides | https://github.com/nathanaelkane/vim-indent-guides
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-airline'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-airline'
|
||||
"Bottom status bar | https://github.com/bling/vim-airline
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-colors'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-colors'
|
||||
"Theme pack | https://github.com/spf13/vim-colors
|
||||
Plug 'https://austenwares.com/gogs/vim/csapprox'
|
||||
Plug 'https://austenwares.com/gitea/vim/csapprox'
|
||||
"256 color vim in terminal | https://github.com/godlygeek/csapprox
|
||||
" }
|
||||
" Syntax {
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-polyglot'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-polyglot'
|
||||
"Many languages | https://github.com/sheerun/vim-polyglot
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-vimperator'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-vimperator'
|
||||
"Vimperator for vim | https://github.com/superbrothers/vim-vimperator
|
||||
Plug 'https://austenwares.com/gogs/vim/i3-vim-syntax'
|
||||
Plug 'https://austenwares.com/gitea/vim/i3-vim-syntax'
|
||||
"i3 syntax | https://github.com/PotatoesMaster/i3-vim-syntax
|
||||
" }
|
||||
" Misc {
|
||||
Plug 'https://austenwares.com/gogs/vim/flappyvird-vim', { 'on': [] }
|
||||
Plug 'https://austenwares.com/gitea/vim/flappyvird-vim', { 'on': [] }
|
||||
"The amazing Flappy Bird game | https://github.com/mattn/flappyvird-vim
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-gnupg'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-gnupg'
|
||||
"GPG support | https://github.com/jamessan/vim-gnupg
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-bracketed-paste'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-bracketed-paste'
|
||||
"Automatic :set paste funcationality | https://github.com/ConradIrwin/vim-bracketed-paste
|
||||
" }
|
||||
" Unused {
|
||||
"Plug 'https://austenwares.com/gogs/vim/mirror.vim'
|
||||
"Plug 'https://austenwares.com/gitea/vim/mirror.vim'
|
||||
" "Edit files remotely | https://github.com/zenbro/mirror.vim
|
||||
" }
|
||||
" Staging {
|
||||
Plug 'https://austenwares.com/gogs/vim/vim-symfony'
|
||||
Plug 'https://austenwares.com/gitea/vim/vim-symfony'
|
||||
|
||||
"Plug 'idanarye/vim-vebugger'
|
||||
"Debugger | https://github.com/idanarye/vim-vebugger
|
||||
|
Loading…
Reference in New Issue
Block a user