Ubuntu下的Shell脚本编程

个性化编译器的配置

编写脚本前先配置一个舒服的编程环境
首先,设置Terminal的界面偏好,在Edit下找到Profile Preference,并更改字体、背景、光标等相关设置(默认的字体实在是太小了)
Ubuntu下的Shell脚本编程_第1张图片
接下来,简单更改一下vim的配置文件

$ vim ~/.vimrc   #在用户主目录下创建一个vim的配置文件

在文件中写入以下代码

set lines=24 columns=80
syntax on

set mouse=a
set selection=exclusive
set selectmode=mouse,key

set number

set shiftwidth=4
set tabstop=4
set softtabstop=4
set smarttab
set backspace=2
set smartindent
set autoindent
set showmatch

set incsearch

配置完毕

Shell编程学习笔记

Ubuntu下的Shell脚本编程_第2张图片

你可能感兴趣的:(Linux学习笔记,linux,编程语言)