如何在ubuntu terminal及vim使用solarized主题
|
在ubuntu上想使用solarized 主题的vim,仅仅是安装solarized插件是不够的,需要同时对ubuntu的terminal的主题也做solarized的配置。 说明:ubuntu中如果只修改vim使用solarized配色,会因terminal配色和vim配色叠加造成亮灰色,因此terminal也需要修改成solarized配色: 1.如果没有安装git,先通过sudo apt-get install git-core安装git2.从github上下载配色方案git clone https://github.com/sigurdga/gnome-terminal-colors-solarized.git 进入gome-terminal-colors-solarized后,运行./set_dark.sh或./set_light.sh 3.此时ls 命令的话会看到显示都是白色,接着我们来修改ls 的配色先从solarized项目中下载配色文件 git clone https://github.com/seebi/dircolors-solarized.git 下载完后会有256dark,ansi-dark,ansi-light等多个配色,这里用256dark 4.接着我们来对vim进行配色,通过git clone https://github.com/altercation/vim-colors-solarized.git 下载vim solarized主题,复制vim-colors-solarized/colors/下的solarized.vim到/usr/share/vim/vim74目录下,注意solarized.vim的权限,然后在~/.vimrc中添加几句 syntax enable let g:solarized_termcolors=256 set background=dark colorscheme solarized 这样就配置完成,最终效果如下图: 下面是在ubuntu16.04上执行set_dart.sh的log: jack@jack-VirtualBox:~/gnome-terminal-colors-solarized$ ./set_dark.sh
This script will ask you which color scheme you want,and which Gnome Terminal profile to overwrite.
Please note that there is no uninstall option yet. If you do not wish to overwrite any of your profiles,you should create a new profile before you run this script. However,you can reset your colors to the Gnome default,by running:
Gnome >= 3.8 dconf reset -f /org/gnome/terminal/legacy/profiles:/
Gnome < 3.8 gconftool-2 --recursive-unset /apps/gnome-terminal
By default,it runs in the interactive mode,but it also can be run non-interactively,just feed it with the necessary options,see 'install.sh --help' for details.
Please select a Gnome Terminal profile:
1) Unnamed
#? 1
You have selected:
Scheme: dark
Profile: Unnamed (b1dcc9dd-5262-4d8d-a863-c897e6d979b9)
Are you sure you want to overwrite the selected profile?
(YES to continue) YES
Confirmation received -- applying settings
A dircolors adapted to solarized can be automatically downloaded.
1) Download seebi' dircolors-solarized: https://github.com/seebi/dircolors-solarized 2) [DEFAULT] I don't need any dircolors.
Enter your choice : [2] 2
jack@jack-VirtualBox:~/gnome-terminal-colors-solarized$ ls (编辑:日照站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- ubuntu – 尝试运行时Gulp服务器问题
- ubuntu上搭建php环境
- Ubuntu/Win10双系统安全删除Ubuntu的方法
- Ubuntu Desktop 16.04下安装Visual Studio Code
- ubuntu-14.04 – 使用强制持久设置的haproxy工作配置
- Ubuntu16.04 LTS 下安装 Android Studio 2.2.2 的详细步骤
- 彻底解决Ubuntu 14.04 重启后DNS配置丢失的问题
- Ubuntu下npm install pcap出错
- ubuntu上最使用jni最简单易懂的例子
- ubuntu – 如何使用–recv-keys而不是–recv添加apt键?
