zoukankan      html  css  js  c++  java
  • Ubuntu下好用的小工具

    个人能力有限,若有错误请批评指正!

    转载请标明出处:http://www.cnblogs.com/wenhust/

      

    工具一:输入法

    谷歌拼音输入法

    1. 在Ubuntu Software Center中搜索googlepinyin安装
      或者
      sudo apt-get install fcitx-googlepinyin -y
    2. 安装完成后进入右上角->System Settings->Language Support进行更新,更新完成后将keyboard input method system设置为fcitx。
    3. 注销后重新登录。
    4. 右上角->System Settings -> Keyboard,左下角Text Entry,点“+”,搜索google,添加google输入法。
    5. 使用鼠标控制右上角的键盘或者Ctrl + Space触发google输入法。

    搜狗拼音输入法

    官网下载地址:http://pinyin.sogou.com/linux/
    官网安装指南:http://pinyin.sogou.com/linux/help.php

    工具二:有道词典

    官网下载地址:http://cidian.youdao.com/index-linux.html
    有道词典多平台下载地址:http://cidian.youdao.com/multi.html

    工具三:Kazam(录屏、截屏)

    在Ubuntu Software Center中搜索Kazam安装即可。

    工具四:KDevelop(IDE)

    sudo apt-get install kdevelop

    工具五:XMind

    官网下载地址:http://www.xmind.net/download/linux/
    如果是压缩包则下载完毕后解压,进行安装
    sudo sh setup.sh
    如果是deb安装包,直接双击安装即可。

    工具六:google chrome(浏览器)

    官网下载地址:https://www.google.com/intl/en/chrome/browser/desktop/
    或者使用终端:
    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    可下载得到deb安装包,点击安装即可。

    工具七:VS Code

    官网下载地址:https://code.visualstudio.com/download

    智能提示及补全

    控制台(按F1)搜索C/C++:Edit Configurations,进入IntelliSense Configurations对Include path进行配置,从而实现对std、OpenCV等的智能提示及补全。

    ${workspaceFolder}/**
    /usr/include/**
    /usr/local/include/**
    

    工具八:Terminator

    sudo apt-get install terminator

    工具九:Zsh

    sudo apt-get install zsh
    修改zsh为默认: chsh -s /bin/zsh

    工具十:Oh my zsh

    • 自动安装:
    wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
    
    • 手动安装:
    git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
    cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
    

    工具十一:zsh-syntax-highlighting

    克隆项目

    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
    

    配置

    plugins=(其他的插件 zsh-syntax-highlighting)
    

    生效

    source ~/.zshrc
    

    工具十二:zsh-autosuggestions

    克隆项目

    git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
    

    配置

    plugins=(其他的插件 zsh-autosuggestions)
    

    生效

    source ~/.zshrc
  • 相关阅读:
    oracle sql语句
    Block
    Bug调试
    Xcode 项目文件介绍
    Mac终端命令
    Objective-C命名编写规范
    2014-07-23 .NET实现微信公众号接入
    2014-07-22 如何成为一名合格的职业人士
    3、C# 文件处理工具集
    2、C# 编码/加密工具集
  • 原文地址:https://www.cnblogs.com/wenhust/p/6123390.html
Copyright © 2011-2022 走看看