Skip to content

Commit

Permalink
delete spacevim related configs
Browse files Browse the repository at this point in the history
  • Loading branch information
c02y committed Jan 23, 2022
1 parent fb522d0 commit a2d1be3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* dotfiles managed by [[http://www.gnu.org/software/stow/][GNU Stow]]
** Before installing spacemacs and spacevim, please read README.org in those directories.
** Before installing spacemacs and spacevim/lunarvim, please read README.org in those directories.
** Install
: git clone https://github.com/codychan/dotfiles.git ~/Dotfiles.d
** Links
Expand Down
2 changes: 1 addition & 1 deletion bin/.local/bin/bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export LESS_TERMCAP_mb=$'\e[01;31m' # enter blinking mode
export LESS_TERMCAP_md=$'\e[01;38;5;75m' # enter double-bright mode
export LESS_TERMCAP_us=$'\e[04;38;5;200m' # enter underline mode
# color man page
export MANPAGER='vim +Man! --cmd "let g:spacevim_enable_startify = 0" -c "set signcolumn=no"'
export MANPAGER='vim +Man! -c "set signcolumn=no"'
export PAGER='less -iXFR -x4 -M'
export GROFF_NO_SGR yes
export EDITOR='vim'
Expand Down
2 changes: 1 addition & 1 deletion bin/.local/bin/mman
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ while getopts "l:k:" opt; do
esac
done

export MANPAGER='vim +Man! --cmd "let g:spacevim_enable_startify = 0" -c "set signcolumn=no"'
export MANPAGER='vim +Man! -c "set signcolumn=no"'
if [ "$*" == "" ]; then
read -r -p "Manpage: " manpage
manpage=$(apropos "$manpage" |
Expand Down
4 changes: 2 additions & 2 deletions bin/.local/bin/vis
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Usage: $(basename $0)
-u to vim -U NONE $@
-U to vim -u ~/Dotfiles.d/vim/vimrc.more $@
-m to vim ~/Dotfiles.d/spacemacs/.spacemacs.d/lisp/cmake-format.json
-v to edit ~/.spacevim
-v to edit ~/.config/lvim/config.lua
-o to vim ~/Dotfiles.d.d/vim/.vimrc
-r to sudo edit
-i to vim ~/.config/i3/config
Expand Down Expand Up @@ -105,7 +105,7 @@ while getopts ":2bBdceftTaksuUmoOvri" args; do # prefix-: no warning for illegal
file="~/Dotfiles.d/vim/vimrc.more"
;;
v)
file="~/.spacevim"
file="~/.config/lvim/config.lua"
;;
r)
shift
Expand Down
4 changes: 2 additions & 2 deletions fish/.config/fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ end

set -gx FISHRC (readlink -f ~/.config/fish/config.fish)
test -f ~/.spacemacs.d/init.el; and set -gx EMACS_EL (readlink -f ~/.spacemacs.d/init.el); or set -gx EMACS_EL ~/.spacemacs
test -f ~/.config/nvim/README.md; and set -gx VIMRC (readlink -f ~/.SpaceVim.d/autoload/myspacevim.vim); or set -gx VIMRC (readlink -f ~/.spacevim)
test -f ~/.config/nvim/config.lua; and set -gx VIMRC (readlink -f ~/.config/lvim/config.lua)
# Please put the following lines into ~/.bashrc, putting them in config.fish won't work
# This fixes a lot problems of displaying unicodes
# https://github.com/syl20bnr/spacemacs/issues/12257
Expand Down Expand Up @@ -1095,7 +1095,7 @@ abbr manp cppman

# color in man page
# K jump link inside vim man page
set -gx MANPAGER 'vim +Man! --cmd "let g:spacevim_enable_startify = 0" -c "set signcolumn=no"'
set -gx MANPAGER 'vim +Man! -c "set signcolumn=no"'
set -gx PAGER 'less -iXFR -x4 -M'

abbr ifw 'ifconfig wlp5s0'
Expand Down

0 comments on commit a2d1be3

Please sign in to comment.