vim /root/.vimrc
"Get out of VI's compatible mode..
set nocompatible
"Sets how many lines of history VIM has to remember
set history=500
"Enable filetype plugin
filetype on
filetype plugin on
filetype indent on
"Set to auto read when a file is changed from the outside
set autoread
"Font
set guifont=Courier\ 9
if has("syntax")
syntax on
endif
"Enable syntax hl
syntax enable
"do not backup file
"set nobackup
"Highlight current
"set cursorline
"Turn on WiLd menu
"set wildmenu
"Always show current position
set ruler
"Show line number
set nu
"Set backspace
set backspace=eol,start,indent
"Bbackspace and cursor keys wrap to
set whichwrap+=<,>,h,l
set incsearch
"Set magic on
set magic
"show matching bracets
set showmatch
"How many tenths of a second to blink
set mat=4
"Highlight search things
set hlsearch
"Text options
set expandtab
set shiftwidth=2
set tabstop=2
set softtabstop=2
set smarttab
set lbr
"Auto indent
set ai
"Smart indent
set si
"C-style indenting
set cindent
"Wrap line
set wrap
"Chinese support
set encoding=utf-8
set fencs=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
set ambiwidth=double
"Show C space errors
let c_space_errors=1
"IComplete Setting
autocmd Filetype cpp,c,java set omnifunc=cppcomplete#Complete
autocmd BufWinLeave *.sh :![ -x % ] || chmod +x %
autocmd BufWinLeave *.py :![ -x % ] || chmod +x %
"Pathogen support
"markdown disable folding
分享到:
相关推荐
- 用户可以根据自己的需求调整GVIM的配置,例如设置默认字体、颜色方案等。 - 学习和掌握Vim的命令语法是充分利用GVIM的关键,这需要一定时间的练习和习惯培养。 4. **Vim与GVIM的关系:** - Vim有命令行版和...
#### vim中显示颜色 在`vim`编辑器中,通过执行`:syntax on`命令可以开启语法高亮显示。 #### Linux的操作类型 Linux是一种分时操作系统,它允许多个用户同时使用系统资源,但也可以在某些特定场景下表现出实时操作...
Vim中显示颜色 - **命令**: `:colorscheme default` - **描述**: 在Vim编辑器中,使用`:colorscheme`命令可以切换不同的配色方案。 ### 45. Linux操作系统类型 - **描述**: Linux通常被认为是分时操作系统,因为它...
字符模式下设置/删除环境变量 - **命令**:使用`export VAR=value`设置环境变量;使用`unset VAR`取消设置环境变量。 ### 41. 查看隐藏文件 - **命令**:使用`ls -a`命令可以查看当前目录下的隐藏文件(以`.`开头...
- **说明**: 设置Vim的颜色显示模式。 #### 45. Linux操作系统类型 - **概念**: Linux是一种分时操作系统。 - **说明**: Linux设计为多用户、多任务操作系统,支持并发执行多个进程。 #### 46. make bzImage命令...
vim中显示颜色或不显示颜色 **知识点**: 使用 `syntax on` 命令开启语法高亮,使用 `syntax off` 关闭。 - 示例:在 `.vimrc` 文件中设置。 #### 45. Linux是实时还是分时操作系统 **知识点**: Linux通常被设计...