github上的vim格式

时间:2016-11-14 23:15:33

标签: github vim

自从我开始使用vim以来,就缩进而言,我的一些文件在github视图上看起来截然不同。这是最奇怪的行为。我将在vimatom中打开文件,并且所有缩进看起来都很好,只要我在github中打开同一个文件,格式化就会变得很糟糕。

以下是一些屏幕截图:

vim中的代码:

enter image description here

原子中的代码:

enter image description here

github上的代码:

enter image description here

我在Google搜索中看到的关于缩进的所有内容都是各种插件的问题,而且与此无关。任何想法为什么会这样?如果它有助于我的.vimrc文件:

syntax on
set number
set hlsearch
set showcmd
set ignorecase
set smartcase
set splitright
set tabstop=2
set shiftwidth=2
set iskeyword-=_
set autoindent
set smartindent
set scrolloff=999
set syntax=markdown

noremap <C-h> <C-w>h
noremap <C-j> <C-w>j
noremap <C-k> <C-w>k
noremap <C-l> <C-w>l
noremap <C-t> gt

au BufNewFile,BufFilePre,BufRead *.md set filetype=markdown

1 个答案:

答案 0 :(得分:3)

使用以下内容在您的github仓库中创建名为.editorconfig的文件:

[*]
indent_style = tab
indent_size = 2