diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-13 15:43:53 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-13 15:43:53 +0100 |
commit | 0d8b358d5642e4003662d40b16a65de1f08c34a2 (patch) | |
tree | a95a78e2b78681d177da80dbca8034d7fe835ca2 | |
parent | Removed debug (diff) | |
download | dotfiles-bsd-0d8b358d5642e4003662d40b16a65de1f08c34a2.tar.gz dotfiles-bsd-0d8b358d5642e4003662d40b16a65de1f08c34a2.tar.bz2 dotfiles-bsd-0d8b358d5642e4003662d40b16a65de1f08c34a2.tar.xz dotfiles-bsd-0d8b358d5642e4003662d40b16a65de1f08c34a2.tar.zst dotfiles-bsd-0d8b358d5642e4003662d40b16a65de1f08c34a2.zip |
Removed coc.vim bullshit
-rw-r--r-- | .config/nvim/init.vim | 2 | ||||
-rw-r--r-- | .config/nvim/plug.vim | 4 | ||||
-rw-r--r-- | .config/zsh/alias.zsh | 2 | ||||
-rwxr-xr-x | .local/bin/dunst_espeak.sh | 1 | ||||
-rwxr-xr-x | .local/bin/tsm-done.sh | 2 |
5 files changed, 6 insertions, 5 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 4c7d5c2..e810fe3 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -20,7 +20,7 @@ source /home/jozan/.config/nvim/bindings.vim source /home/jozan/.config/nvim/sidebars.vim source /home/jozan/.config/nvim/langs.vim source /home/jozan/.config/nvim/plug-config/airline.vim -source /home/jozan/.config/nvim/plug-config/coc.vim +" source /home/jozan/.config/nvim/plug-config/coc.vim source /home/jozan/.config/nvim/plug-config/floaterm.vim source /home/jozan/.config/nvim/plug-config/nerd-commenter.vim source /home/jozan/.config/nvim/plug-config/org.vim diff --git a/.config/nvim/plug.vim b/.config/nvim/plug.vim index b22e45a..4c79aaa 100644 --- a/.config/nvim/plug.vim +++ b/.config/nvim/plug.vim @@ -1,5 +1,5 @@ call plug#begin(system('echo -n "$XDG_DATA_HOME/nvim/plugged"')) -Plug 'antoinemadec/coc-fzf', {'branch': 'release'} +" Plug 'antoinemadec/coc-fzf', {'branch': 'release'} Plug 'ap/vim-css-color' Plug 'brglng/vim-sidebar-manager' Plug 'dag/vim-fish' @@ -16,7 +16,7 @@ Plug 'mg979/vim-visual-multi' Plug 'mhinz/vim-signify' Plug 'mhinz/vim-startify' Plug 'morhetz/gruvbox' -Plug 'neoclide/coc.nvim', {'branch': 'release'} +" Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'paretje/nvim-man' Plug 'preservim/tagbar' Plug 'preservim/nerdcommenter' diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 87b8321..88c5a8f 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -50,7 +50,7 @@ alias stopdocker='docker-machine stop docker-home' alias envdocker='eval `docker-machine env docker-home`' alias vimz='nvim $(fzf --preview="head -$FZF_PREVIEW_LINES {}")' alias v='nvim $(fzf --preview="head -$FZF_PREVIEW_LINES {}")' -vs() { +vbi() { p=$(pwd) cd "$HOME"/.local/bin || return nvim $(fzf --preview='head -$FZF_PREVIEW_LINES {}') diff --git a/.local/bin/dunst_espeak.sh b/.local/bin/dunst_espeak.sh index 8355db4..666aa22 100755 --- a/.local/bin/dunst_espeak.sh +++ b/.local/bin/dunst_espeak.sh @@ -3,4 +3,5 @@ [ "$5" = "LOW" ] && exit [ "$3" ] || exit words=$(printf "$3" | sed 's/<b>//g' | sed 's/<\/b>//g' | sed 's/[^a-zA-Z0-9?!.,% ]//g') +words=$(printf "%s\n" "$words" | awk '{for (i=1;i<11;i++)print $i }' | tr '\n' ' ') espeak "$words" diff --git a/.local/bin/tsm-done.sh b/.local/bin/tsm-done.sh index c95f71c..fade4e0 100755 --- a/.local/bin/tsm-done.sh +++ b/.local/bin/tsm-done.sh @@ -4,4 +4,4 @@ notify-send \ -u normal \ -t 10000 \ 'Transmission' \ - ' Torrent downloaded' + " Torrent downloaded" |