8000 GitHub - ljliuX/SuperVim: vimrc
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ljliuX/SuperVim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SuperVim

安装

Vim

curl -Lo ~/.vimrc \
	https://raw.githubusercontent.com/ljliuX/SuperVim/master/vimrc \
	&& vim -c ":q" && vim -c ":PlugInstall"

Neovim

curl -Lo ~/.config/nvim/init.vim \
	https://raw.githubusercontent.com/ljliuX/SuperVim/master/vimrc \
	&& nvim -c ":q" && nvim -c ":PlugInstall"

脚本

测试终端颜色

awk 'BEGIN{
    s="/\\/\\/\\/\\/\\"; s=s s s s s s s s;
    for (colnum = 0; colnum<77; colnum++) {
        r = 255-(colnum*255/76);
        g = (colnum*510/76);
        b = (colnum*255/76);
        if (g>255) g = 510-g;
        printf "\033[48;2;%d;%d;%dm", r,g,b;
        printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b;
        printf "%s\033[0m", substr(s,colnum+1,1);
    }
    printf "\n";
}'

卸载

删除目录~/.SuperVim、配置文件~/.vimrc或者~/.config/nvim/init.vim

Reference

Gtags GNU Global / Gtags 类似于 Ctags 的源代码标签工具

About

vimrc

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  
0