SkyWT / 博客 / VSCode、Vim 配置文件备份

VSCode、Vim 配置文件备份

2018 年 8 月 28 日 02:38


这里就是我 Visual Studio Code 和 Vim 的配置文件的备份……

Visual Studio Code

{
    "editor.acceptSuggestionOnEnter": "off",
    "editor.autoClosingBrackets": true,
    "editor.cursorBlinking": "smooth",
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.insertSpaces": false,
    "editor.cursorStyle": "line",
    "editor.folding": true,
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.cursorStyle": "line",
    "editor.renderWhitespace": "all",
    "editor.renderIndentGuides": true,
}

VIm
(暂时,待修改)

set cin nu rnu ts=4 sw=4 sts=4 et noswapfile nobackup
set so=100
set backspace=eol,start,indent
syntax on
set incsearch
set hlsearch
set ignorecase
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
    Plugin 'gmarik/Vundle.vim'
    Plugin 'xjoi/codeforces.vim'
    Plugin 'vim-airline/vim-airline'
call vundle#end()
filetype plugin indent on
let g:airline#extensions#tabline#enabled = 1
set autochdir
nmap <tab> :bn <enter>
set cursorline
hi CursorLine   cterm=NONE ctermbg=238 ctermfg=none

暂无评论


发表新的评论

所有评论都将经过博主审核。请勿填写无意义邮箱或发表无关评论、广告等,否则会被视为垃圾评论。

提交评论即表明你同意本网站使用 Cookie,并允许本站在后台记录你的邮箱、IP 地址等必要信息。
(提交一次评论后,本提示将不再展示)