2020年12月15日

我的vim設定 PART 2

又來了,他進化了,現在長成這樣 … 

set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe'
call vundle#end()
filetype plugin indent on

" YouCompleteMe
let g:ycm_global_ycm_extra_conf='~/.vim/bundle/YouCompleteMe/.ycm_extra_conf.py'
let g:ycm_confirm_extra_conf=0
let g:ycm_python_binary_path='/usr/bin/python3'
let g:ycm_autoclose_preview_window_after_completion=1

set term=screen-256color-s
colorscheme burnttoast256

set autoindent
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set textwidth=79

set showmatch

set number
set relativenumber
set ic
set cindent
set confirm
set wrap

set encoding=utf-8

set guioptions-=r
set guioptions-=L
set guioptions-=b

set guifont=Monaco:h13

syntax on
set ignorecase
set incsearch
set hlsearch
set cursorline
set cursorcolumn

沒有留言: