美文网首页我用 LinuxLinuxLinux学习之路
Ubuntu使用笔记(2):工作环境配置

Ubuntu使用笔记(2):工作环境配置

作者: 凌杰_owlman | 来源:发表于2018-08-03 19:35 被阅读21次

    我是个程序员加技术写作者,当然编程工具、编辑工具和终端环境是我首先要搞定的。

    安装基本开发者工具

    • GNU开发工具:sudo apt-get install build-essential
    • clang+llvm:sudo apt-get install clang llvm
    • vim和Eclipse:sudo apt-get install vim eclipse
    • Qt5 : sudo apt-get install cmake qt5-default qtcreator
    • pandoc和LaTeX : sudo apt-get install pandoc texlive-full texmaker latex-cjk-all
    • git、wget和pip:sudo apt-get git wget python-pip

    配置pip的国内源头

    由于某墙的存在和客观物理网络的问题,国外网络资源是朝不保夕的,所以强烈建议,安装完pip之后,第一件事就是将pip的源改成国内的,我这里选择的是豆瓣的源,具体如下:

    在/home/owlman/目录(即你的用户目录)中编辑.pip/pip.conf(没有就创建一个),将其内容修改为:

    [global]
    index-url = http://pypi.douban.com/simple
    [install]
    trusted-host=pypi.douban.com
    

    我们可以执行一下pip install --upgrade pip看看是否一切正常,顺便升级一下pip。

    zsh和oh-my-zsh

    先查看系统一下有什么shell:

    cat /etc/shells
    

    如果在返回结果中没有看到zsh,就先安装它:

    sudo apt-get install zsh
    

    安装完成后,输入:chsh,然后在返回提示符后输入新值:/bin/zsh,最后在终端中输入sudo echo $SHELL
    命令,若返回"/bin/zsh",说明SHELL已修改为zsh(通常要将系统注销-登录一下才会生效)。

    接下来,我们安装oh-my-zsh,执行以下命令:

    wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
    

    在安装完成后,在家目录下会有隐藏文件.zshrc,可根据个人喜好进行配置。例如zsh的主题:
    可以通过查看OMZ提供的主题:

    ls ~/.oh-my-zsh/themes
    

    然后,选择一款主题,譬如我们选择cloud,就编辑~/.zshrc文件中的ZSH_THEME变量:ZSH_THEME="cloud"。效果如下所示:

    zsh主题

    powerline

    安装powerline:

    pip install powerline-status --user
    

    然后通过pip show powerline-status命令查找其安装位置:

    Name: powerline-status
    Version: 2.6
    Summary: The ultimate statusline/prompt utility.
    Home-page: https://github.com/powerline/powerline
    Author: Kim Silkebaekken
    Author-email: kim.silkebaekken+vim@gmail.com
    License: MIT
    Location: /home/owlman/.local/lib/python2.7/site-packages
    Requires:
    Required-by:
    

    (如果要进行powerline相关的配置,它的Location是必须要了解的。这里以/home/owlman/.local/lib/python2.7/site-packages/powerline/为例。)

    安装powerline字体:

    git clone https://gitee.com/koomox/powerline-fonts.git
    #(包含很多可用字体,安装过程慢,请找到网速好的地方)
    cd powerline-fonts
    sudo ./install.sh
    

    配置zsh:

    在/home/owlman/目录(即你的用户目录)中编辑.zshrc文件,在其末尾加入一行:

    . .local/lib/python2.7/site-packages/powerline/bindlinds/zsh/powerline.zsh
    

    效果如下:

    zsh+powerline

    配置tmux:

    在/home/owlman/目录(即你的用户目录)中编辑.tmux.conf文件,在其末尾加入一行:

    source '.local/lib/python2.7/site-packages/powerline/bindings/tmux/powerline.conf'
    

    效果如下:

    tmux+powerline

    配置vim:

    在/home/owlman/目录(即你的用户目录)编辑.vimrc文件,在其中加入一下三行:

    set rtp+=.local/lib/python2.7/site-packages/powerline/bindings/vim/
    set laststatus=2
    set t_Co=256
    

    效果如下:

    vim+powerline

    相关文章

      网友评论

      本文标题:Ubuntu使用笔记(2):工作环境配置

      本文链接:https://www.haomeiwen.com/subject/gkmuvftx.html