summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2021-02-15 17:19:55 +0100
committerMarc Vertes <mvertes@free.fr>2021-02-15 17:19:55 +0100
commit90ec7bf2b039599f987066c4e16b5817743fafcf (patch)
treea13ff8cf72a496c2dd960118c0833ca8a8595f96
parent3f71e5e47055550d187eb1b60d889f82bb1de28f (diff)
update
-rw-r--r--.Xresources1
-rw-r--r--.vimrc2
-rw-r--r--.zsh-powerline.sh12
3 files changed, 10 insertions, 5 deletions
diff --git a/.Xresources b/.Xresources
index be0e99f..1514003 100644
--- a/.Xresources
+++ b/.Xresources
@@ -21,6 +21,7 @@ xterm*VT100.Translations: #override \
Meta <Key> minus: smaller-vt-font() \n\
Meta <Key> equal: larger-vt-font() \n
xterm*cursorColor: red
+xterm*visualBell: true
!xterm*faceName: DejaVu Sans Mono
!xterm*faceSize: 10
! xterm*font: 7x14
diff --git a/.vimrc b/.vimrc
index 671af49..9e45e2d 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,6 +1,8 @@
" set background=
set t_te= t_ti= laststatus=2
+set rtp+=/opt/local/share/fzf/vim
+
syntax off
filetype on
filetype plugin on
diff --git a/.zsh-powerline.sh b/.zsh-powerline.sh
index f0835a4..e3f05f1 100644
--- a/.zsh-powerline.sh
+++ b/.zsh-powerline.sh
@@ -1,9 +1,10 @@
# Colorscheme
readonly COLOR_CWD='blue'
readonly COLOR_GIT='cyan'
-readonly COLOR_SUCCESS='green'
+#readonly COLOR_SUCCESS='green'
+readonly COLOR_SUCCESS='blue'
readonly COLOR_FAILURE='red'
-readonly COLOR_TIME='cyan'
+#readonly COLOR_TIME='cyan'
readonly SYMBOL_GIT_BRANCH='⑂'
readonly SYMBOL_GIT_MODIFIED='*'
@@ -56,12 +57,13 @@ _config_prompt() {
local symbol="%F{$COLOR_FAILURE}$PS_SYMBOL%f"
fi
- local cwd="%F{$COLOR_CWD}%~%f"
+ #local cwd="%F{$COLOR_CWD}%~%f"
+ local cwd="%F{$COLOR_CWD}%2~%f"
local git="%F{$COLOR_GIT}$(_git_info)%f"
- local time="%F{$COLOR_TIME}%D{%H:%M:%S}%f"
+ #local time="%F{$COLOR_TIME}%D{%H:%M:%S}%f"
PROMPT="$cwd$git $symbol "
- RPROMPT="$time"
+ #RPROMPT="$time"
}