博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cygwin 中 vim 及 手机debian终端中 vim 设置---新增Mac 下设置
阅读量:5830 次
发布时间:2019-06-18

本文共 1127 字,大约阅读时间需要 3 分钟。

cygwin :

ls 高亮

vim .bashrc

修改

1 alias df='df -h' 2 alias du='du -h' 3 alias whence='type -a'                        # where, of a sort 4 alias grep='grep --color'                     # show differences in colour 5 alias egrep='egrep --color=auto'              # show differences in colour 6 alias fgrep='fgrep --color=auto'              # show differences in colour 7 alias ls='ls -hF --color=tty'                 # classify files in colour 8 alias dir='ls --color=auto --format=vertical' 9 alias vdir='ls --color=auto --format=long'10 alias ll='ls -l'                              # long list11 alias la='ls -A'                              # all but . and ..12 alias l='ls -CF'                              #13 alias wch='which -a'

 

如果是Mac系统下,则修改为

alias ls='ls -G' #如果要显示隐藏文件,加-a

 

vim高亮

vim .vimrc

同下 

 

手机vim:

vim etc/vim/vimrc

 
1 syntax on "自动语法高亮  2 set number "显示行号  3 set showcmd "  4 set hlsearch "  5   6   7 filetype plugin indent on "开启插件  8 set cindent  9 set smarttab 10 set expandtab 11 set tabstop=4 "设定tab长度为4 12 set sw=4 " 13 set ruler "打开状态栏标尺
 
 

 

转载于:https://www.cnblogs.com/sherylynn/archive/2013/04/24/3039459.html

你可能感兴趣的文章
Chrome 广告屏蔽功能不影响浏览器性能
查看>>
Android状态栏实现沉浸式模式
查看>>
原创]windows server 2012 AD架构试验系列 – 16更改DC计算机名
查看>>
表格排序
查看>>
java只能的round,ceil,floor方法的使用
查看>>
新开的博客,为自己祝贺一下
查看>>
【CQOI2011】放棋子
查看>>
采用JXL包进行EXCEL数据写入操作
查看>>
一周总结
查看>>
将txt文件转化为json进行操作
查看>>
线性表4 - 数据结构和算法09
查看>>
uva-317-找规律
查看>>
我的2014-相对奢侈的生活
查看>>
Java设计模式
查看>>
Spring Cloud 微服务分布式链路跟踪 Sleuth 与 Zipkin
查看>>
ORM数据库框架 SQLite 常用数据库框架比较 MD
查看>>
华为OJ 名字美丽度
查看>>
微信公众号与APP微信第三方登录账号打通
查看>>
onchange()事件的应用
查看>>
Windows 下最佳的 C++ 开发的 IDE 是什么?
查看>>