Deepin - 装机必备软件记录

一、常用的命令行工具

sudo apt install -y vim git curl pluma meld vlc remmina uget aria2
1、vim

下载主题,文件放在~/vim/colors下面

https://github.com/sickill/vim-monokai

下载配置管理工具

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

预设配置文件~/.vimrc,使用PluginInstall安装

set nocompatible
filetype off   

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-rails.git'
Plugin 'bling/vim-airline'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'L9'
Plugin 'FuzzyFinder'

call vundle#end()
filetype plugin indent on

syntax enable
colorscheme monokai
set laststatus=2
let g:airline_powerline_fonts = 1 
let g:airline_section_b = '%{strftime("%c")}'
let g:airline_section_y = 'BN: %{bufnr("%")}'
let g:airline#extensions#tavline#enabled = 1 
2、git
git config --global user.email [email protected]
git config --global user.name xxx
git config --global credential.helper store
3、curl
curl -x aiezu:[email protected]:80 \
--location --request POST 'http://127.0.0.1:8080/user/info' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "hanlei",
    "password": "123456"
}'
4、pluma

可以替代系统的文本编辑器

pluma test.txt
5、meld

文件对比工具

meld 1.txt 2.txt
6、vlc

非常好用的中文视频播放器

7、remmina

强大的linux下远程访问控制工具

8、uget + aria2

linux下专用的下载器,配合chrome的aria2界面工具使用更佳

二、日常使用的工具介绍

1、聊天软件,从应用商店下载
  • QQ
  • 微信
  • 企业微信
2、邮箱,从应用商店下载
  • Foxmail
3、娱乐音乐,从应用商店下载
  • 网易云音乐
  • 腾讯视频
4、网盘,从应用商店下载
  • 百度网盘
5、办公office,从应用商店下载
  • WPS
6、图片处理,从应用商店下载
  • GIMP

三、开发者使用工具

1、简单文本编辑器
  • sublime text
  • vscode

解决sublime无法使用中文问题

git clone https://github.com/lyfeyaj/sublime-text-imfix.git
2、常用的小工具
  • draw.io - 绘制结构图
  • postman - 模拟http请求
  • typora - markdown编辑器
3、数据库操作工具
  • Dbeaver - 免费的mysql、sqlite等界面工具,强大不弱于navicat
  • AnotherRedisDesktopManager - 免费的redis界面工具
4、IDE编辑器
  • clion
  • goland
  • idea

你可能感兴趣的:(LINUX,linux,deepin)