my.zsh/my.zsh

84 lines
2.3 KiB
Bash
Raw Normal View History

2013-04-11 22:25:45 +01:00
# -----------------------------------------------------------------------------
# My.Zsh - My personal zsh configuration
# Copyright (C) 2013 Sameer Rahmani <lxsameer@gnu.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# -----------------------------------------------------------------------------
2014-04-13 05:40:54 +01:00
current_path=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)")
current_file=$current_path/$(basename -- "$0")
2018-01-07 18:26:29 +00:00
source $current_path/lib/antigen.zsh
2013-05-06 12:54:02 +01:00
#[[ -z "$PS1" ]] && return
# Set options
2018-01-16 10:50:06 +00:00
export HISTFILE=$HOME/.zsh_history
export HISTFILESIZE=500
export SAVEHIST=500
export HISTSIZE=500
setopt HIST_IGNORE_DUPS
setopt NO_HIST_BEEP
setopt PROMPT_SUBST
setopt NO_BEEP
setopt AUTO_CD
setopt CORRECT
setopt SHARE_HISTORY
setopt HIST_IGNORE_ALL_DUPS
2013-05-06 12:54:02 +01:00
# My.Zsh directory path
myzsh=${MYZSH:-$HOME}
2013-05-06 15:49:28 +01:00
fpath=($myzsh/lib/functions/{*.zsh,*.zwc}(N) $fpath)
# Autoload functions that have the executable bit on.
for lib ($myzsh/lib/*.zsh); do
source $lib
done
2013-05-06 12:54:02 +01:00
# Load aliases
. $myzsh/aliases
# Load the theme and coloring
autoload -U colors && colors
theme=${THEME:-$myzsh/themes/lxsameer.zsh-theme}
. $theme
project_path=${PROJECTS:-~/src}
cdpath=($project_path $cdpath)
2014-04-13 05:40:54 +01:00
2014-04-13 13:19:32 +01:00
# Load syntax highlighter
source $current_path/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
2014-04-13 13:40:04 +01:00
# Load autosuggestions
2016-04-23 13:24:36 +01:00
source $current_path/zsh-autosuggestions/autosuggestions.zsh
2014-04-13 13:40:04 +01:00
2016-04-23 12:58:27 +01:00
2018-01-07 18:26:29 +00:00
#Enable autosuggestions automatically
# zle-line-init() {
2014-04-29 17:55:05 +01:00
# zle autosuggest-start
2018-01-07 18:26:29 +00:00
# }
2014-04-13 13:40:04 +01:00
2018-01-07 18:26:29 +00:00
# zle -N zle-line-init
2014-04-13 13:40:04 +01:00
2018-01-07 18:26:29 +00:00
# #use ctrl+t to toggle autosuggestions(hopefully this wont be needed as
# #zsh-autosuggestions is designed to be unobtrusive)
# bindkey '^T' autosuggest-toggle