mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 03:34:10 -05:00
Fix spelling mistakes in the other config files
This commit is contained in:
parent
223851e085
commit
99a44df496
2 changed files with 9 additions and 9 deletions
|
@ -14,7 +14,7 @@ if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# ''
|
|||
runtime! macros/matchit.vim
|
||||
endif
|
||||
|
||||
"enable omnicompletion for any filetype without that has syntax highlighting
|
||||
"enable omni-completion for any file type without that has syntax highlighting
|
||||
if exists("+omnifunc")
|
||||
autocmd VimEnter,Filetype * if &omnifunc == ""|setlocal omnifunc=syntaxcomplete#Complete|endif
|
||||
endif
|
||||
|
@ -22,7 +22,7 @@ endif
|
|||
"prevent warnings when changing read-only files
|
||||
autocmd FileChangedRO * nested set noreadonly
|
||||
|
||||
"FILETPE AND SYNTAX: {{{
|
||||
"FILE TYPE AND SYNTAX: {{{
|
||||
"enable more accurate syntax synchronization
|
||||
autocmd BufEnter * :syntax sync fromstart
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
set nocompatible "disable vi-compatibility settings
|
||||
set backspace=indent,eol,start "enables/configures standard backspace behaviour
|
||||
|
||||
"use the '*' register as well as the the '+' register if it's available too
|
||||
"use the '*' register as well as the '+' register if it's available too
|
||||
set clipboard=unnamed
|
||||
|
||||
if has('unnamedplus')
|
||||
|
@ -42,7 +42,7 @@
|
|||
if $TERM =~ '^linux$'|set t_Co=8|elseif !has("gui_running")|set t_Co=256|endif
|
||||
set ttyfast "assume a fast connection to the terminal for better rendering
|
||||
|
||||
"configure to primarily use utf8
|
||||
"configure to primarily use utf-8
|
||||
if has("multi_byte")
|
||||
if &termencoding == ""
|
||||
let &termencoding = &encoding
|
||||
|
|
Loading…
Reference in a new issue