Goodbye ohmyzsh
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -1,6 +1,3 @@
|
|||||||
[submodule "dotdrop"]
|
[submodule "dotdrop"]
|
||||||
path = dotdrop
|
path = dotdrop
|
||||||
url = https://github.com/deadc0de6/dotdrop.git
|
url = https://github.com/deadc0de6/dotdrop.git
|
||||||
[submodule "dotfiles/zsh/ohmyzsh"]
|
|
||||||
path = dotfiles/zsh/ohmyzsh
|
|
||||||
url = https://github.com/ohmyzsh/ohmyzsh
|
|
||||||
|
|||||||
@@ -15,12 +15,6 @@ dotfiles:
|
|||||||
f_zshrc:
|
f_zshrc:
|
||||||
src: zsh/zshrc
|
src: zsh/zshrc
|
||||||
dst: ~/.zshrc
|
dst: ~/.zshrc
|
||||||
d_ohmyzsh:
|
|
||||||
src: zsh/ohmyzsh
|
|
||||||
dst: ~/.ohmyzsh
|
|
||||||
f_zsh_themes:
|
|
||||||
src: zsh/zsh.themes
|
|
||||||
dst: ~/.ohmyzsh/themes
|
|
||||||
f_vimrc:
|
f_vimrc:
|
||||||
src: vim/vimrc
|
src: vim/vimrc
|
||||||
dst: ~/.vimrc
|
dst: ~/.vimrc
|
||||||
@@ -131,8 +125,6 @@ profiles:
|
|||||||
zsh:
|
zsh:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- f_zshrc
|
- f_zshrc
|
||||||
- d_ohmyzsh
|
|
||||||
- f_zsh_themes
|
|
||||||
vim:
|
vim:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- f_vimrc
|
- f_vimrc
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ set mouse=c
|
|||||||
set undolevels=1337
|
set undolevels=1337
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set wildmenu " autocomplete :e
|
set wildmenu " autocomplete :e
|
||||||
set lazyredraw " redraw only when necessary
|
"set lazyredraw " redraw only when necessary
|
||||||
|
|
||||||
" ------------------------------------- Indents & Whitespaces ------------------
|
" ------------------------------------- Indents & Whitespaces ------------------
|
||||||
set tabstop=4 " how many spaces are a tab when opening a file
|
set tabstop=4 " how many spaces are a tab when opening a file
|
||||||
|
|||||||
Submodule dotfiles/zsh/ohmyzsh deleted from bc9fe7423f
@@ -1,7 +1,3 @@
|
|||||||
export ZSH="/home/$USER/.ohmyzsh"
|
|
||||||
|
|
||||||
ZSH_THEME="the-one"
|
|
||||||
|
|
||||||
## Prompt
|
## Prompt
|
||||||
autoload -Uz vcs_info
|
autoload -Uz vcs_info
|
||||||
autoload -U colors && colors
|
autoload -U colors && colors
|
||||||
@@ -11,13 +7,6 @@ setopt prompt_subst
|
|||||||
export PROMPT="%{$fg[yellow]%}%m %{$fg_bold[green]%}➜ %{$fg_bold[blue]%}%~ %{$fg_bold[red]%}\$vcs_info_msg_0_ %{$reset_color%}"
|
export PROMPT="%{$fg[yellow]%}%m %{$fg_bold[green]%}➜ %{$fg_bold[blue]%}%~ %{$fg_bold[red]%}\$vcs_info_msg_0_ %{$reset_color%}"
|
||||||
zstyle ':vcs_info:git:*' formats '%b'
|
zstyle ':vcs_info:git:*' formats '%b'
|
||||||
|
|
||||||
DISABLE_AUTO_UPDATE="true"
|
|
||||||
COMPLETION_WAITING_DOTS="true"
|
|
||||||
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|
||||||
|
|
||||||
plugins=()
|
|
||||||
#source $ZSH/oh-my-zsh.sh
|
|
||||||
|
|
||||||
## Exports
|
## Exports
|
||||||
export TERM="xterm-256color"
|
export TERM="xterm-256color"
|
||||||
export EDITOR="vim"
|
export EDITOR="vim"
|
||||||
@@ -90,7 +79,7 @@ bindkey -v
|
|||||||
export FZF_DEFAULT_OPTS='--preview="head {}" --layout=reverse --bind=tab:down --bind=btab:up'
|
export FZF_DEFAULT_OPTS='--preview="head {}" --layout=reverse --bind=tab:down --bind=btab:up'
|
||||||
|
|
||||||
## fzf Bindings in zsh (C-r and C-t)
|
## fzf Bindings in zsh (C-r and C-t)
|
||||||
if [[ -x $(which fzf) ]]
|
if [[ -x $(which fzf 2> /dev/null) ]]
|
||||||
then
|
then
|
||||||
source ~/.vim/bundle/fzf/shell/key-bindings.zsh
|
source ~/.vim/bundle/fzf/shell/key-bindings.zsh
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user