update zshrc and ideavimrc
This commit is contained in:
9
.ideavimrc
Normal file
9
.ideavimrc
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Plug 'tpope/vim-surround'
|
||||||
|
|
||||||
|
set commentary
|
||||||
|
|
||||||
|
set visualbell
|
||||||
|
set ignorecase
|
||||||
|
set smartcase
|
||||||
|
set incsearch
|
||||||
|
set hlsearch
|
||||||
@ -35,6 +35,13 @@ ZSH_CUSTOM=${ZSH_CUSTOM:-~/.oh-my-zsh/custom}
|
|||||||
|
|
||||||
# Install zsh-syntax-highlighting
|
# Install zsh-syntax-highlighting
|
||||||
if [ ! -d "${ZSH_CUSTOM}/plugins/zsh-syntax-highlighting" ]; then
|
if [ ! -d "${ZSH_CUSTOM}/plugins/zsh-syntax-highlighting" ]; then
|
||||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git \
|
git clone --depth 1 https://github.com/zsh-users/zsh-syntax-highlighting.git \
|
||||||
${ZSH_CUSTOM}/plugins/zsh-syntax-highlighting
|
${ZSH_CUSTOM}/plugins/zsh-syntax-highlighting
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Install zsh-syntax-highlighting
|
||||||
|
if [ ! -d "${ZSH_CUSTOM}/plugins/fzf-zsh-plugin" ]; then
|
||||||
|
git clone --depth 1 https://github.com/unixorn/fzf-zsh-plugin.git \
|
||||||
|
${ZSH_CUSTOM}/plugins/fzf-zsh-plugin
|
||||||
|
fi
|
||||||
|
|||||||
@ -74,6 +74,7 @@ plugins=(
|
|||||||
git
|
git
|
||||||
zsh-syntax-highlighting
|
zsh-syntax-highlighting
|
||||||
zsh-autosuggestions
|
zsh-autosuggestions
|
||||||
|
fzf-zsh-plugin
|
||||||
)
|
)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
@ -119,3 +120,5 @@ source ~/dotfiles/zsh/tools.zsh
|
|||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_DIR="$HOME/.nvm"
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
|
. "$HOME/.local/bin/env"
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
export DJANGO_SETTINGS_MODULE=config.settings.dev
|
# export DJANGO_SETTINGS_MODULE=config.settings.dev
|
||||||
export DATABASE_HOST=127.0.0.1
|
export DATABASE_HOST=127.0.0.1
|
||||||
export DATABASE_NAME=cerenim
|
export DATABASE_NAME=cerenim
|
||||||
export DATABASE_USER=brainhero
|
export DATABASE_USER=brainhero
|
||||||
|
|||||||
Reference in New Issue
Block a user