Cygwin使用

1、解决Cygwin中vim的backspace不能正常使用

首先cd ~/

然后vim .vimrc

最后粘贴下面文本:

set nocompatible
set backspace=indent,eol,start
set ruler
set showcmd
set wildmenu
set fo=cqrt
set laststatus=2
set textwidth=78
set ww=<,>,h,l
set autoindent
" set no error bells
set noeb visualbell
set expandtab
set tabstop=4
set shiftwidth=4
set expandtab
let mapleader = ","
syn on
filetype on
filetype plugin on
filetype indent on

原文地址:https://www.cnblogs.com/bugY/p/2426255.html