catchup
This commit is contained in:
parent
4fa96ba7ce
commit
f86ace80a2
16
.bashrc
16
.bashrc
|
|
@ -140,3 +140,19 @@ TERM=xterm-256color
|
||||||
# editor setup
|
# editor setup
|
||||||
export VISUAL=vim
|
export VISUAL=vim
|
||||||
export EDITOR="$VISUAL"
|
export EDITOR="$VISUAL"
|
||||||
|
|
||||||
|
# >>> conda initialize >>>
|
||||||
|
# !! Contents within this block are managed by 'conda init' !!
|
||||||
|
__conda_setup="$('/home/andrei/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
eval "$__conda_setup"
|
||||||
|
else
|
||||||
|
if [ -f "/home/andrei/miniconda3/etc/profile.d/conda.sh" ]; then
|
||||||
|
. "/home/andrei/miniconda3/etc/profile.d/conda.sh"
|
||||||
|
else
|
||||||
|
export PATH="/home/andrei/miniconda3/bin:$PATH"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
unset __conda_setup
|
||||||
|
# <<< conda initialize <<<
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,3 +18,5 @@
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = vim
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
[init]
|
||||||
|
defaultBranch = main
|
||||||
|
|
|
||||||
7
.vimrc
7
.vimrc
|
|
@ -23,8 +23,8 @@ call vundle#begin()
|
||||||
|
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plugin 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
Plugin 'suan/vim-instant-markdown'
|
"Plugin 'suan/vim-instant-markdown'
|
||||||
Plugin 'xuhdev/vim-latex-live-preview'
|
"Plugin 'xuhdev/vim-latex-live-preview'
|
||||||
|
|
||||||
Plugin 'kien/rainbow_parentheses.vim'
|
Plugin 'kien/rainbow_parentheses.vim'
|
||||||
|
|
||||||
|
|
@ -44,6 +44,9 @@ filetype plugin on
|
||||||
"
|
"
|
||||||
" see :h vundle for more details or wiki for FAQ
|
" see :h vundle for more details or wiki for FAQ
|
||||||
" Put your non-Plugin stuff after this line
|
" Put your non-Plugin stuff after this line
|
||||||
|
set nobackup
|
||||||
|
set nowritebackup
|
||||||
|
set noswapfile
|
||||||
set number
|
set number
|
||||||
set linebreak
|
set linebreak
|
||||||
set showbreak=+++
|
set showbreak=+++
|
||||||
|
|
|
||||||
25
.zshrc
25
.zshrc
|
|
@ -1,5 +1,5 @@
|
||||||
# If you come from bash you might have to change your $PATH.
|
# If you come from bash you might have to change your $PATH.
|
||||||
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
export PATH=$HOME/bin:/usr/local/bin:/usr/lib64/openjdk-17/bin:$PATH
|
||||||
|
|
||||||
# Path to your oh-my-zsh installation.
|
# Path to your oh-my-zsh installation.
|
||||||
export ZSH=/home/andrei/.oh-my-zsh
|
export ZSH=/home/andrei/.oh-my-zsh
|
||||||
|
|
@ -93,3 +93,26 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# alias zshconfig="mate ~/.zshrc"
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
source $HOME/.aliases
|
source $HOME/.aliases
|
||||||
|
|
||||||
|
autoload -z edit-command-line
|
||||||
|
zle -N edit-command-line
|
||||||
|
bindkey "^v" edit-command-line
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# >>> conda initialize >>>
|
||||||
|
# !! Contents within this block are managed by 'conda init' !!
|
||||||
|
__conda_setup="$('/home/andrei/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
eval "$__conda_setup"
|
||||||
|
else
|
||||||
|
if [ -f "/home/andrei/miniconda3/etc/profile.d/conda.sh" ]; then
|
||||||
|
. "/home/andrei/miniconda3/etc/profile.d/conda.sh"
|
||||||
|
else
|
||||||
|
export PATH="/home/andrei/miniconda3/bin:$PATH"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
unset __conda_setup
|
||||||
|
# <<< conda initialize <<<
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue