ใน. vimrc ของคุณคืออะไร [ปิด]


157

Vi และ Vim อนุญาตให้มีการปรับแต่งที่ยอดเยี่ยมจริงๆโดยทั่วไปแล้วจะเก็บไว้ใน.vimrcไฟล์ คุณสมบัติทั่วไปสำหรับโปรแกรมเมอร์คือการเน้นไวยากรณ์, การเยื้องแบบอัจฉริยะและอื่น ๆ

คุณมีเทคนิคอื่นใดสำหรับการเขียนโปรแกรมเชิงสร้างสรรค์ที่ซ่อนอยู่ใน. vimrc ของคุณหรือไม่

ฉันส่วนใหญ่สนใจใน refactorings คลาสรถยนต์และมาโครการผลิตที่คล้ายกันโดยเฉพาะอย่างยิ่งสำหรับ C #


11
ฉันคิดว่าคุณควรจะได้ถามคนโพสต์ของพวกเขาแสดงความคิดเห็น config ไฟล์เสียงเรียกเข้า
innaM

ทำไมไม่แบ่งปันสิ่งนี้กับ GitHub? ฉันมีโฟลเดอร์. vim ทั้งหมดของฉันภายใต้ git และทุกอย่างสามารถดูได้ที่นี่: github.com/lsdr/vim-folder
lsdr

1
ฉันไม่คิดว่า. vimrcs ทั้งหมดมีประโยชน์ ถ้ามีคนมากมายตอบคำถามคุณจะเอาของทั้งหมดมาตบในระบบของคุณหรือไม่? ตัวอย่างมีประโยชน์มากกว่าเช่นเดียวกับรายการนามแฝงหรือฟังก์ชั่นที่มีประโยชน์ดีกว่าไฟล์ทั้งหมด (bash | z) ไฟล์ rc
Xiong Chiamiov

คำตอบ:


104

คุณถามมัน :-)

"{{{Auto Commands

" Automatically cd into the directory that the file is in
autocmd BufEnter * execute "chdir ".escape(expand("%:p:h"), ' ')

" Remove any trailing whitespace that is in the file
autocmd BufRead,BufWrite * if ! &bin | silent! %s/\s\+$//ge | endif

" Restore cursor position to where it was before
augroup JumpCursorOnEdit
   au!
   autocmd BufReadPost *
            \ if expand("<afile>:p:h") !=? $TEMP |
            \   if line("'\"") > 1 && line("'\"") <= line("$") |
            \     let JumpCursorOnEdit_foo = line("'\"") |
            \     let b:doopenfold = 1 |
            \     if (foldlevel(JumpCursorOnEdit_foo) > foldlevel(JumpCursorOnEdit_foo - 1)) |
            \        let JumpCursorOnEdit_foo = JumpCursorOnEdit_foo - 1 |
            \        let b:doopenfold = 2 |
            \     endif |
            \     exe JumpCursorOnEdit_foo |
            \   endif |
            \ endif
   " Need to postpone using "zv" until after reading the modelines.
   autocmd BufWinEnter *
            \ if exists("b:doopenfold") |
            \   exe "normal zv" |
            \   if(b:doopenfold > 1) |
            \       exe  "+".1 |
            \   endif |
            \   unlet b:doopenfold |
            \ endif
augroup END

"}}}

"{{{Misc Settings

" Necesary  for lots of cool vim things
set nocompatible

" This shows what you are typing as a command.  I love this!
set showcmd

" Folding Stuffs
set foldmethod=marker

" Needed for Syntax Highlighting and stuff
filetype on
filetype plugin on
syntax enable
set grepprg=grep\ -nH\ $*

" Who doesn't like autoindent?
set autoindent

" Spaces are better than a tab character
set expandtab
set smarttab

" Who wants an 8 character tab?  Not me!
set shiftwidth=3
set softtabstop=3

" Use english for spellchecking, but don't spellcheck by default
if version >= 700
   set spl=en spell
   set nospell
endif

" Real men use gcc
"compiler gcc

" Cool tab completion stuff
set wildmenu
set wildmode=list:longest,full

" Enable mouse support in console
set mouse=a

" Got backspace?
set backspace=2

" Line Numbers PWN!
set number

" Ignoring case is a fun trick
set ignorecase

" And so is Artificial Intellegence!
set smartcase

" This is totally awesome - remap jj to escape in insert mode.  You'll never type jj anyway, so it's great!
inoremap jj <Esc>

nnoremap JJJJ <Nop>

" Incremental searching is sexy
set incsearch

" Highlight things that we find with the search
set hlsearch

" Since I use linux, I want this
let g:clipbrdDefaultReg = '+'

" When I close a tab, remove the buffer
set nohidden

" Set off the other paren
highlight MatchParen ctermbg=4
" }}}

"{{{Look and Feel

" Favorite Color Scheme
if has("gui_running")
   colorscheme inkpot
   " Remove Toolbar
   set guioptions-=T
   "Terminus is AWESOME
   set guifont=Terminus\ 9
else
   colorscheme metacosm
endif

"Status line gnarliness
set laststatus=2
set statusline=%F%m%r%h%w\ (%{&ff}){%Y}\ [%l,%v][%p%%]

" }}}

"{{{ Functions

"{{{ Open URL in browser

function! Browser ()
   let line = getline (".")
   let line = matchstr (line, "http[^   ]*")
   exec "!konqueror ".line
endfunction

"}}}

"{{{Theme Rotating
let themeindex=0
function! RotateColorTheme()
   let y = -1
   while y == -1
      let colorstring = "inkpot#ron#blue#elflord#evening#koehler#murphy#pablo#desert#torte#"
      let x = match( colorstring, "#", g:themeindex )
      let y = match( colorstring, "#", x + 1 )
      let g:themeindex = x + 1
      if y == -1
         let g:themeindex = 0
      else
         let themestring = strpart(colorstring, x + 1, y - x - 1)
         return ":colorscheme ".themestring
      endif
   endwhile
endfunction
" }}}

"{{{ Paste Toggle
let paste_mode = 0 " 0 = normal, 1 = paste

func! Paste_on_off()
   if g:paste_mode == 0
      set paste
      let g:paste_mode = 1
   else
      set nopaste
      let g:paste_mode = 0
   endif
   return
endfunc
"}}}

"{{{ Todo List Mode

function! TodoListMode()
   e ~/.todo.otl
   Calendar
   wincmd l
   set foldlevel=1
   tabnew ~/.notes.txt
   tabfirst
   " or 'norm! zMzr'
endfunction

"}}}

"}}}

"{{{ Mappings

" Open Url on this line with the browser \w
map <Leader>w :call Browser ()<CR>

" Open the Project Plugin <F2>
nnoremap <silent> <F2> :Project<CR>

" Open the Project Plugin
nnoremap <silent> <Leader>pal  :Project .vimproject<CR>

" TODO Mode
nnoremap <silent> <Leader>todo :execute TodoListMode()<CR>

" Open the TagList Plugin <F3>
nnoremap <silent> <F3> :Tlist<CR>

" Next Tab
nnoremap <silent> <C-Right> :tabnext<CR>

" Previous Tab
nnoremap <silent> <C-Left> :tabprevious<CR>

" New Tab
nnoremap <silent> <C-t> :tabnew<CR>

" Rotate Color Scheme <F8>
nnoremap <silent> <F8> :execute RotateColorTheme()<CR>

" DOS is for fools.
nnoremap <silent> <F9> :%s/$//g<CR>:%s// /g<CR>

" Paste Mode!  Dang! <F10>
nnoremap <silent> <F10> :call Paste_on_off()<CR>
set pastetoggle=<F10>

" Edit vimrc \ev
nnoremap <silent> <Leader>ev :tabnew<CR>:e ~/.vimrc<CR>

" Edit gvimrc \gv
nnoremap <silent> <Leader>gv :tabnew<CR>:e ~/.gvimrc<CR>

" Up and down are more logical with g..
nnoremap <silent> k gk
nnoremap <silent> j gj
inoremap <silent> <Up> <Esc>gka
inoremap <silent> <Down> <Esc>gja

" Good call Benjie (r for i)
nnoremap <silent> <Home> i <Esc>r
nnoremap <silent> <End> a <Esc>r

" Create Blank Newlines and stay in Normal mode
nnoremap <silent> zj o<Esc>
nnoremap <silent> zk O<Esc>

" Space will toggle folds!
nnoremap <space> za

" Search mappings: These will make it so that going to the next one in a
" search will center on the line it's found in.
map N Nzz
map n nzz

" Testing
set completeopt=longest,menuone,preview

inoremap <expr> <cr> pumvisible() ? "\<c-y>" : "\<c-g>u\<cr>"
inoremap <expr> <c-n> pumvisible() ? "\<lt>c-n>" : "\<lt>c-n>\<lt>c-r>=pumvisible() ? \"\\<lt>down>\" : \"\"\<lt>cr>"
inoremap <expr> <m-;> pumvisible() ? "\<lt>c-n>" : "\<lt>c-x>\<lt>c-o>\<lt>c-n>\<lt>c-p>\<lt>c-r>=pumvisible() ? \"\\<lt>down>\" : \"\"\<lt>cr>"

" Swap ; and :  Convenient.
nnoremap ; :
nnoremap : ;

" Fix email paragraphs
nnoremap <leader>par :%s/^>$//<CR>

"ly$O#{{{ "lpjjj_%A#}}}jjzajj

"}}}

"{{{Taglist configuration
let Tlist_Use_Right_Window = 1
let Tlist_Enable_Fold_Column = 0
let Tlist_Exit_OnlyWindow = 1
let Tlist_Use_SingleClick = 1
let Tlist_Inc_Winwidth = 0
"}}}

let g:rct_completion_use_fri = 1
"let g:Tex_DefaultTargetFormat = "pdf"
let g:Tex_ViewRule_pdf = "kpdf"

filetype plugin indent on
syntax on

78
แต่ทำไม 3, ตั้ง shift shift = 3, ตั้ง softtabstop = 3 ... อาจจะ 2 หรือ 4 แต่ทำไม 3?
Johan

1
แค่สงสัย แต่จะไม่ทำแผนที่ jj กับ <Esc> ทำให้คุณมีความล่าช้าเล็กน้อยเมื่อกดปุ่ม j ในโหมดแทรก?
sykora

1
@sykora: ใช่ แต่ทันทีที่คุณพิมพ์อักขระอื่น (นั่นไม่ใช่ j) มันจะปรากฏขึ้น ฉันทำสิ่งเดียวกัน แต่ใช้ jk แทนเพราะฉันคิดว่าการกดปุ่ม jk นั้นเร็วกว่าการกด jj มีเพียงครั้งนี้ที่ส่งผลต่อฉันคือพิมพ์ตัวอักษรดังนั้นบางทีคุณอาจจะดีกว่า
David Miani

2
@Johan: เพราะ 'สามหมายเลขวิเศษ' :) ที่จริงแล้วนั่นเป็นเพียงการขี่มอเตอร์ไซค์ แต่ฉันก็ชอบสามคนด้วย :)
Robert Massaioli

4
ถ้าผู้ชายแท้ใช้ gcc ทำไมไม่ทำล่ะ (คอมไพเลอร์ gcc ใส่ความเห็น!)
Abdulsattar Mohammed

73

นี่ไม่ได้อยู่ในไฟล์. vimrc ของฉัน แต่เมื่อวานนี้ฉันเรียนรู้เกี่ยวกับ]pคำสั่ง สิ่งนี้จะวางเนื้อหาของบัฟเฟอร์แบบเดียวกับที่pทำ แต่จะปรับการเยื้องให้ตรงกับบรรทัดที่เคอร์เซอร์เปิดอยู่โดยอัตโนมัติ! นี่คือสุดยอดสำหรับการย้ายรหัสรอบ ๆ


คุณหมายถึงสิ่งนี้คล้ายกับ: set paste, p,: set nopaste?
hyperboreean

3
เท่าที่ฉันรู้ตัวเลือกการตั้งค่าการวางไม่มีผลต่อคำสั่ง p มันมีผลเฉพาะข้อความที่พิมพ์ (หรือวางผ่านเทอร์มินัล) ในโหมดแทรก ไม่มันเป็นคุณสมบัติที่แตกต่าง
เกร็ก Hewgill

1
ไม่ควร upvoting สำหรับสิ่งนี้เพราะมันไม่ได้ตอบคำถาม แต่ฉันชอบมันมาก;)
gorsky

53

ฉันใช้สิ่งต่อไปนี้เพื่อเก็บไฟล์ชั่วคราวและไฟล์สำรองไว้ในที่เดียว:

set backup
set backupdir=~/.vim/backup
set directory=~/.vim/tmp

บันทึกไดเรกทอรีทำงานที่ยุ่งเหยิงไปทั่วสถานที่

คุณจะต้องสร้างไดเรกทอรีเหล่านี้ก่อนเป็นกลุ่มจะไม่สร้างให้คุณ


2
ฉันควรจะพูดถึงคุณจะต้องสร้างไดเรกทอรีเหล่านั้นด้วยตัวเองเป็นกลุ่มจะไม่ทำเพื่อคุณ
Harley Holcombe

สิ่งนี้จัดการกับไฟล์ที่เหมือนกันหลายไฟล์อย่างถูกต้องหรือไม่? (เช่นถ้าคุณกำลังแก้ไขสาขาที่แตกต่างกันของรหัสเดียวกัน)
yungchin

ไม่สิ่งนี้จะเขียนทับไฟล์สำรองข้อมูลเก่าด้วยชื่อเดียวกัน หากใครมีวิธีแก้ไขปัญหานี้โปรดแจ้งให้เราทราบ
Harley Holcombe

3
ลองทำสิ่งนี้: au BufWritePre * let & bex = '-' strftime ("% Y% m% d-% H% M% S") '.vimbackup' (นั่นคือหนึ่งบรรทัด) และฉันต้องพูดถึงเรื่องนี้ด้วย: vim.wikia.com/wiki/VimTip962
Zsolt Botykai

1
สิ่งนี้ยังป้องกันไม่ให้ Vim บ่นเมื่อเปิดไฟล์ Dropbox -synced ข้ามเครื่องหลายเครื่อง
Cody Hess

31

บางคน (กล่าวคือดึง) ที่โพสต์ด้านบนมีบรรทัดนี้:

"cd โดยอัตโนมัติในไดเรกทอรีที่ไฟล์นั้นอยู่:"

autocmd BufEnter * execute "chdir ".escape(expand("%:p:h"), ' ')

ฉันกำลังทำอะไรแบบนั้นอยู่จนกระทั่งตัวฉันเองค้นพบสิ่งเดียวกันก็สามารถสร้างขึ้นได้ด้วยตัวของมันเอง:

set autochdir

ฉันคิดว่าสิ่งที่คล้ายกันเกิดขึ้นกับฉันในช่วงเวลาที่ต่างกัน Vim มีการตั้งค่าในตัวและตัวเลือกต่าง ๆ มากมายซึ่งบางครั้งมันจะเร็วและง่ายกว่าในการม้วนเอกสารของคุณเองกว่าการค้นหาเอกสารสำหรับวิธีการติดตั้งในตัว


หาที่ดี! ฉันชอบการใช้งานในตัวมากกว่า ^ _ ^ รวมถึงสิ่งนี้จะไม่ล้มเหลวหากมี | ในชื่อไฟล์
34921 Javed Ahamed

2
autochdir มีบางสิ่งที่ฉันไม่สามารถแก้ไขได้ (เปลี่ยนไดเรกทอรีก่อนที่จะโหลดไฟล์ที่ให้ไว้ในบรรทัดคำสั่ง) และฉันอ่านที่อื่นที่นี่บน SO เกี่ยวกับautocmd BufEnter * silent! lcd %:p:h:gs/ /\\ /สิ่งที่ทำสิ่งพื้นฐานเดียวกัน แต่ไม่ทำลายบรรทัดคำสั่ง
dash-tom-bang

ฉันต้องการทำให้มันเป็นตัวเลือกและใช้คำสั่งนี้เพื่อป้อนไดเรกทอรีของไฟล์ปัจจุบัน: cd%: h
staackuser2

28

การเพิ่มล่าสุดของฉันสำหรับการเน้นบรรทัดปัจจุบัน

set cul                                           # highlight current line
hi CursorLine term=none cterm=none ctermbg=3      # adjust color

2
มีวิธีใดบ้างในการเลือกสีเพิ่มเติม
Fzs2

ความแตกต่างระหว่างชุดตรายางและชุดเคอร์เซอร์คืออะไร?
putolaruan

ฉันแค่ใช้ "set cul" เพื่อรับสายใต้แถวปัจจุบันของฉัน การตั้งค่าเคอร์เซอร์จะยุ่งมากเกินไปกับการเน้นไวยากรณ์เพื่อรสนิยมของฉัน
Claes Mogren

2
อ้างถึงสคริปต์นี้ ( vim.org/scripts/script.php?script_id=1349 ) เพื่อรับสีที่มีให้ อาจต้องเปิดการสนับสนุน 256 สีสำหรับกลุ่มเพื่อให้ได้หลากหลายมากขึ้น
Brian Wigginton

1
@Claes จริงset culและset cursorlineทำสิ่งเดียวกันแน่นอน
Gerardo Marset

24

อัปเดต 2012 : ตอนนี้ฉันขอแนะนำให้ตรวจสอบvim-powerlineซึ่งแทนที่สคริปต์สถานะเดิมของฉันแม้ว่าตอนนี้จะขาดคุณสมบัติบางอย่างที่ฉันพลาดไป


ฉันจะบอกว่าสิ่งที่สถานะในvimrc ของฉันน่าจะเป็นที่น่าสนใจ / มีประโยชน์มากจากจำนวนมาก (ฉีกจากผู้เขียน vimrc ที่นี่และโพสต์บล็อกที่สอดคล้องกันที่นี่ )

ภาพหน้าจอ:

บรรทัดสถานะ http://img34.imageshack.us/img34/849/statusline.png

รหัส:

"recalculate the trailing whitespace warning when idle, and after saving
autocmd cursorhold,bufwritepost * unlet! b:statusline_trailing_space_warning

"return '[\s]' if trailing white space is detected
"return '' otherwise
function! StatuslineTrailingSpaceWarning()
    if !exists("b:statusline_trailing_space_warning")

        if !&modifiable
            let b:statusline_trailing_space_warning = ''
            return b:statusline_trailing_space_warning
        endif

        if search('\s\+$', 'nw') != 0
            let b:statusline_trailing_space_warning = '[\s]'
        else
            let b:statusline_trailing_space_warning = ''
        endif
    endif
    return b:statusline_trailing_space_warning
endfunction


"return the syntax highlight group under the cursor ''
function! StatuslineCurrentHighlight()
    let name = synIDattr(synID(line('.'),col('.'),1),'name')
    if name == ''
        return ''
    else
        return '[' . name . ']'
    endif
endfunction

"recalculate the tab warning flag when idle and after writing
autocmd cursorhold,bufwritepost * unlet! b:statusline_tab_warning

"return '[&et]' if &et is set wrong
"return '[mixed-indenting]' if spaces and tabs are used to indent
"return an empty string if everything is fine
function! StatuslineTabWarning()
    if !exists("b:statusline_tab_warning")
        let b:statusline_tab_warning = ''

        if !&modifiable
            return b:statusline_tab_warning
        endif

        let tabs = search('^\t', 'nw') != 0

        "find spaces that arent used as alignment in the first indent column
        let spaces = search('^ \{' . &ts . ',}[^\t]', 'nw') != 0

        if tabs && spaces
            let b:statusline_tab_warning = '[mixed-indenting]'
        elseif (spaces && !&et) || (tabs && &et)
            let b:statusline_tab_warning = '[&et]'
        endif
    endif
    return b:statusline_tab_warning
endfunction

"recalculate the long line warning when idle and after saving
autocmd cursorhold,bufwritepost * unlet! b:statusline_long_line_warning

"return a warning for "long lines" where "long" is either &textwidth or 80 (if
"no &textwidth is set)
"
"return '' if no long lines
"return '[#x,my,$z] if long lines are found, were x is the number of long
"lines, y is the median length of the long lines and z is the length of the
"longest line
function! StatuslineLongLineWarning()
    if !exists("b:statusline_long_line_warning")

        if !&modifiable
            let b:statusline_long_line_warning = ''
            return b:statusline_long_line_warning
        endif

        let long_line_lens = s:LongLines()

        if len(long_line_lens) > 0
            let b:statusline_long_line_warning = "[" .
                        \ '#' . len(long_line_lens) . "," .
                        \ 'm' . s:Median(long_line_lens) . "," .
                        \ '$' . max(long_line_lens) . "]"
        else
            let b:statusline_long_line_warning = ""
        endif
    endif
    return b:statusline_long_line_warning
endfunction

"return a list containing the lengths of the long lines in this buffer
function! s:LongLines()
    let threshold = (&tw ? &tw : 80)
    let spaces = repeat(" ", &ts)

    let long_line_lens = []

    let i = 1
    while i <= line("$")
        let len = strlen(substitute(getline(i), '\t', spaces, 'g'))
        if len > threshold
            call add(long_line_lens, len)
        endif
        let i += 1
    endwhile

    return long_line_lens
endfunction

"find the median of the given array of numbers
function! s:Median(nums)
    let nums = sort(a:nums)
    let l = len(nums)

    if l % 2 == 1
        let i = (l-1) / 2
        return nums[i]
    else
        return (nums[l/2] + nums[(l/2)-1]) / 2
    endif
endfunction


"statusline setup
set statusline=%f "tail of the filename

"display a warning if fileformat isnt unix
set statusline+=%#warningmsg#
set statusline+=%{&ff!='unix'?'['.&ff.']':''}
set statusline+=%*

"display a warning if file encoding isnt utf-8
set statusline+=%#warningmsg#
set statusline+=%{(&fenc!='utf-8'&&&fenc!='')?'['.&fenc.']':''}
set statusline+=%*

set statusline+=%h "help file flag
set statusline+=%y "filetype
set statusline+=%r "read only flag
set statusline+=%m "modified flag

"display a warning if &et is wrong, or we have mixed-indenting
set statusline+=%#error#
set statusline+=%{StatuslineTabWarning()}
set statusline+=%*

set statusline+=%{StatuslineTrailingSpaceWarning()}

set statusline+=%{StatuslineLongLineWarning()}

set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*

"display a warning if &paste is set
set statusline+=%#error#
set statusline+=%{&paste?'[paste]':''}
set statusline+=%*

set statusline+=%= "left/right separator

function! SlSpace()
    if exists("*GetSpaceMovement")
        return "[" . GetSpaceMovement() . "]"
    else
        return ""
    endif
endfunc
set statusline+=%{SlSpace()}

set statusline+=%{StatuslineCurrentHighlight()}\ \ "current highlight
set statusline+=%c, "cursor column
set statusline+=%l/%L "cursor line/total lines
set statusline+=\ %P "percent through file
set laststatus=2

นอกจากนี้ยังมีการแจ้งในบรรทัดสถานะของข้อมูลไฟล์มาตรฐานทั่วไป แต่ยังรวมถึงสิ่งเพิ่มเติมเช่นคำเตือนสำหรับ: วางชุดผสมเยื้องพื้นที่สีขาวท้าย ฯลฯ มีประโยชน์มากถ้าคุณวิเคราะห์รูปแบบรหัสของคุณโดยเฉพาะ

นอกจากนี้และดังที่แสดงในภาพหน้าจอการรวมเข้ากับ syntasticช่วยให้ข้อผิดพลาดทางไวยากรณ์ใด ๆ ที่จะเน้นบนมัน (สมมติว่าภาษาที่คุณเลือกมีการตรวจสอบไวยากรณ์ที่เกี่ยวข้องรวม


ฉันกำลังมีปัญหากับข้างต้น มีเงื่อนไขที่ขาดหายไปใน LongLines () ฉันเปลี่ยนเป็น "ในขณะที่ฉัน <threshold" แต่ len ก็หายไปที่ถูกเรียกภายในเงื่อนไขนั้น มีข้อคิดเห็นเกี่ยวกับ len บ้างไหม?
Ali

ไม่เป็นไรฉันพบสิ่งจริงที่นี่: dotfiles.org/~gregf/.vimrc
Ali

@pug เซิร์ฟเวอร์ภายในมีข้อผิดพลาดในขณะนี้ = (คุณสามารถให้คำแนะนำหรือวางส่วนที่เกี่ยวข้องของ. vimrc ที่ไหนสักแห่งได้ไหม
Anton Strogonoff

@Atonton แก้ไขการวางที่ทำให้เกิดความสับสนโดยการจัดรูปแบบรหัส ควรจะดีตอนนี้ ฉันยังแนะนำให้ติดไว้ในไฟล์ plugin / statusline.vim เพื่อป้องกันไม่ให้ไฟล์. vimrc ของคุณยุ่งเหยิงหากคุณจะใช้งาน
Gavin Gilmour

@Gavin ใช้งานได้ดีขอบคุณสำหรับการแก้ไขและเคล็ดลับ! ฉันเคยมีบางสิ่งบางอย่างเช่นautocmd BufEnter *.py match OverLength /\%81v.\+/. vimrc สำหรับการเน้นเส้นยาว ๆ แต่วิธีการของคุณอาจเสียสมาธิน้อยลง นอกจากนี้ผลการตรวจสอบไวยากรณ์ในแถบสถานะเป็นสิ่งที่ยอดเยี่ยมอย่างหนึ่ง!
Anton Strogonoff

19

รุ่นมินิของฉัน:

syntax on
set background=dark
set shiftwidth=2
set tabstop=2

if has("autocmd")
  filetype plugin indent on
endif

set showcmd             " Show (partial) command in status line.
set showmatch           " Show matching brackets.
set ignorecase          " Do case insensitive matching
set smartcase           " Do smart case matching
set incsearch           " Incremental search
set hidden              " Hide buffers when they are abandoned

รุ่นใหญ่ที่รวบรวมจากสถานที่ต่าง ๆ :

syntax on
set background=dark
set ruler                     " show the line number on the bar
set more                      " use more prompt
set autoread                  " watch for file changes
set number                    " line numbers
set hidden
set noautowrite               " don't automagically write on :next
set lazyredraw                " don't redraw when don't have to
set showmode
set showcmd
set nocompatible              " vim, not vi
set autoindent smartindent    " auto/smart indent
set smarttab                  " tab and backspace are smart
set tabstop=2                 " 6 spaces
set shiftwidth=2
set scrolloff=5               " keep at least 5 lines above/below
set sidescrolloff=5           " keep at least 5 lines left/right
set history=200
set backspace=indent,eol,start
set linebreak
set cmdheight=2               " command line two lines high
set undolevels=1000           " 1000 undos
set updatecount=100           " switch every 100 chars
set complete=.,w,b,u,U,t,i,d  " do lots of scanning on tab completion
set ttyfast                   " we have a fast terminal
set noerrorbells              " No error bells please
set shell=bash
set fileformats=unix
set ff=unix
filetype on                   " Enable filetype detection
filetype indent on            " Enable filetype-specific indenting
filetype plugin on            " Enable filetype-specific plugins
set wildmode=longest:full
set wildmenu                  " menu has tab completion
let maplocalleader=','        " all my macros start with ,
set laststatus=2

"  searching
set incsearch                 " incremental search
set ignorecase                " search ignoring case
set hlsearch                  " highlight the search
set showmatch                 " show matching bracket
set diffopt=filler,iwhite     " ignore all whitespace and sync

"  backup
set backup
set backupdir=~/.vim_backup
set viminfo=%100,'100,/100,h,\"500,:100,n~/.viminfo
"set viminfo='100,f1

" spelling
if v:version >= 700
  " Enable spell check for text files
  autocmd BufNewFile,BufRead *.txt setlocal spell spelllang=en
endif

" mappings
" toggle list mode
nmap <LocalLeader>tl :set list!<cr>
" toggle paste mode
nmap <LocalLeader>pp :set paste!<cr>

fyi, 'smartindent' ล้าสมัย (cindent แทนที่มัน) และไม่ได้ทำอะไรเลยเมื่อคุณใช้การเยื้องของไฟล์และจะใช้งานได้เฉพาะเมื่อไม่มีประโยชน์เท่านั้น
graywh

13

บางครั้งสิ่งที่ง่ายที่สุดคือสิ่งที่มีค่าที่สุด 2 บรรทัดใน. vimrc ของฉันที่ขาดไม่ได้โดยสิ้นเชิง:

อีกแล้ว; :
เหนือ,;

ฉันทำnore \ ;แทนเพราะใช้,เป็นของฉัน<leader>
aehlke

3
แต่มันจะทำอะไร? :)
Henrik Bjørnskov

6
เซมิโคลอนเป็นคำสั่งที่ไม่ค่อยได้ใช้ โคลอนเป็นคำสั่งที่ใช้กันทั่วไปมากใช้เพื่อเข้าสู่โหมดบรรทัดคำสั่ง การแมปหนึ่งกับอีกโหมดหนึ่งช่วยให้คุณเข้าสู่โหมดบรรทัดคำสั่งโดยไม่ต้องกดปุ่ม Shift ดังนั้นจึงช่วยประหยัดกล้ามเนื้อในนิ้วก้อยของคุณ
วิลเลียม Pursell

7
บนแป้นพิมพ์ภาษาฝรั่งเศสคุณไม่จำเป็นต้องใช้ 'shift' เพื่อเขียน ',', ';' และ ':' ... แต่ '\', '[' และ ']' เป็นความเจ็บปวดที่แท้จริง
Olivier Pons

12

อื่น ๆ. การตั้งค่า:

  1. ปิดระฆังข้อผิดพลาดที่น่ารำคาญ:

    set noerrorbells
    set visualbell
    set t_vb=
    
  2. ทำการย้ายเคอร์เซอร์ตามที่คาดไว้ด้วยเส้นที่พันกัน:

    inoremap <Down> <C-o>gj
    inoremap <Up> <C-o>gk
    
  3. ค้นหาctags"แท็ก" ไฟล์ในไดเรกทอรีจนพบ:

    set tags=tags;/
    
  4. แสดงไฟล์ SCons ด้วยไวยากรณ์ Python:

    autocmd BufReadPre,BufNewFile SConstruct set filetype=python
    autocmd BufReadPre,BufNewFile SConscript set filetype=python
    

เพิ่ม #! / usr / bin / python ไปยังไฟล์ SConstruct มันจะกระตุ้นการตรวจจับประเภทไฟล์ที่ Vim สร้างขึ้น
richq

มีวิธีที่ดีกว่าในการสร้างj/ kย้ายตามที่คาดไว้กับเส้นที่พันหรือไม่? ฉันไม่ต้องการกดgทุกครั้ง
puk

8

ฉันไม่ใช่คนขี้โมโหที่สุดในโลก แต่นี่เป็นเพียงบางส่วนที่ฉันเลือกได้

function! Mosh_Tab_Or_Complete()
    if col('.')>1 && strpart( getline('.'), col('.')-2, 3 ) =~ '^\w'
        return "\<C-N>"
    else
        return "\<Tab>"
endfunction

inoremap <Tab> <C-R>=Mosh_Tab_Or_Complete()<CR>

ทำให้การเติมข้อความอัตโนมัติของแท็บคิดออกว่าคุณต้องการวางคำที่นั่นหรือแท็บจริง (4 ช่องว่าง)

map cc :.,$s/^ *//<CR>

ลบช่องว่างที่เปิดทั้งหมดจากที่นี่ไปยังจุดสิ้นสุดของไฟล์ ด้วยเหตุผลบางอย่างฉันพบว่ามีประโยชน์มากมาย

set nu! 
set nobackup

แสดงหมายเลขบรรทัดและอย่าสร้างไฟล์สำรองที่น่ารำคาญ ฉันไม่เคยเรียกคืนสิ่งใดจากข้อมูลสำรองเก่า ๆ

imap ii <C-[>

ขณะแทรกอยู่ให้กดฉันสองครั้งเพื่อไปที่โหมดคำสั่ง ฉันไม่เคยเจอคำหรือตัวแปรด้วย 2 ฉันในแถวและด้วยวิธีนี้ฉันไม่จำเป็นต้องให้นิ้วของฉันออกจากแถวบ้านหรือกดปุ่มหลายปุ่มเพื่อสลับไปมา


3
การทำแผนที่ที่น่าสนใจของ ii ... น่าสนใจมาก เป็นความคิดที่ยอดเยี่ยม - แม้ว่าฉันจะกังวลว่ามันจะส่งผลกระทบอย่างรุนแรงต่อความสามารถในการใช้เสียง 'วานิลลา' ที่ฉันควรทำ
thomasrutter

ฉันทำสิ่งเดียวกันกับ ;; เป็นเวลานานและไม่พบปัญหาใด ๆ เมื่อถูกบังคับให้ใช้วานิลลา vi / vim ฉันจำได้ทันทีว่าต้องใช้กุญแจโง่ [esc] (ซึ่งเป็นเหตุผลหนึ่งที่ฉันเกลียดกลุ่มเป็นเวลาหลายปี!) สำหรับฉันการตั้งค่านี้เป็นสิ่งสำคัญอย่างยิ่ง ฉันจะไม่ใช้ vi (m) โดยไม่เต็มใจ <br> และฉันชอบความคิดที่จะใช้ 'ii' แทนที่จะเป็น ';;': ใช้งานง่ายขึ้นเกือบจะเหมือนกับปุ่มสลับ
iconoclast

ความเป็นไปได้อีกอย่างหนึ่งคือการใช้ Ctrl-C เพื่อออกจากโหมดแทรก มันเกือบจะเหมือนกับ Escape (ความแตกต่างเพียงอย่างเดียวที่ทำให้ฉันรำคาญคือเมื่อทำงานบนเส้นของบล็อกภาพ)
a3nm

8

vimrc ที่ให้ความเห็นอย่างหนักของฉันพร้อมปุ่มลัด readline-esque (emacs):

if version >= 700

"------ Meta ------"

" clear all autocommands! (this comment must be on its own line)
autocmd!

set nocompatible                " break away from old vi compatibility
set fileformats=unix,dos,mac    " support all three newline formats
set viminfo=                    " don't use or save viminfo files

"------ Console UI & Text display ------"

set cmdheight=1                 " explicitly set the height of the command line
set showcmd                     " Show (partial) command in status line.
set number                      " yay line numbers
set ruler                       " show current position at bottom
set noerrorbells                " don't whine
set visualbell t_vb=            " and don't make faces
set lazyredraw                  " don't redraw while in macros
set scrolloff=5                 " keep at least 5 lines around the cursor
set wrap                        " soft wrap long lines
set list                        " show invisible characters
set listchars=tab:>·,trail:·    " but only show tabs and trailing whitespace
set report=0                    " report back on all changes
set shortmess=atI               " shorten messages and don't show intro
set wildmenu                    " turn on wild menu :e <Tab>
set wildmode=list:longest       " set wildmenu to list choice
if has('syntax')
    syntax on
    " Remember that rxvt-unicode has 88 colors by default; enable this only if
    " you are using the 256-color patch
    if &term == 'rxvt-unicode'
        set t_Co=256
    endif

    if &t_Co == 256
        colorscheme xoria256
    else
        colorscheme peachpuff
    endif
endif

"------ Text editing and searching behavior ------"

set nohlsearch                  " turn off highlighting for searched expressions
set incsearch                   " highlight as we search however
set matchtime=5                 " blink matching chars for .x seconds
set mouse=a                     " try to use a mouse in the console (wimp!)
set ignorecase                  " set case insensitivity
set smartcase                   " unless there's a capital letter
set completeopt=menu,longest,preview " more autocomplete <Ctrl>-P options
set nostartofline               " leave my cursor position alone!
set backspace=2                 " equiv to :set backspace=indent,eol,start
set textwidth=80                " we like 80 columns
set showmatch                   " show matching brackets
set formatoptions=tcrql         " t - autowrap to textwidth
                                " c - autowrap comments to textwidth
                                " r - autoinsert comment leader with <Enter>
                                " q - allow formatting of comments with :gq
                                " l - don't format already long lines

"------ Indents and tabs ------"

set autoindent                  " set the cursor at same indent as line above
set smartindent                 " try to be smart about indenting (C-style)
set expandtab                   " expand <Tab>s with spaces; death to tabs!
set shiftwidth=4                " spaces for each step of (auto)indent
set softtabstop=4               " set virtual tab stop (compat for 8-wide tabs)
set tabstop=8                   " for proper display of files with tabs
set shiftround                  " always round indents to multiple of shiftwidth
set copyindent                  " use existing indents for new indents
set preserveindent              " save as much indent structure as possible
filetype plugin indent on       " load filetype plugins and indent settings

"------ Key bindings ------"

" Remap broken meta-keys that send ^[
for n in range(97,122) " ASCII a-z
    let c = nr2char(n)
    exec "set <M-". c .">=\e". c
    exec "map  \e". c ." <M-". c .">"
    exec "map! \e". c ." <M-". c .">"
endfor

""" Emacs keybindings
" first move the window command because we'll be taking it over
noremap <C-x> <C-w>
" Movement left/right
noremap! <C-b> <Left>
noremap! <C-f> <Right>
" word left/right
noremap  <M-b> b
noremap! <M-b> <C-o>b
noremap  <M-f> w
noremap! <M-f> <C-o>w
" line start/end
noremap  <C-a> ^
noremap! <C-a> <Esc>I
noremap  <C-e> $
noremap! <C-e> <Esc>A
" Rubout word / line and enter insert mode
noremap  <C-w> i<C-w>
noremap  <C-u> i<C-u>
" Forward delete char / word / line and enter insert mode
noremap! <C-d> <C-o>x
noremap  <M-d> dw
noremap! <M-d> <C-o>dw
noremap  <C-k> Da
noremap! <C-k> <C-o>D
" Undo / Redo and enter normal mode
noremap  <C-_> u
noremap! <C-_> <C-o>u<Esc><Right>
noremap! <C-r> <C-o><C-r><Esc>

" Remap <C-space> to word completion
noremap! <Nul> <C-n>

" OS X paste (pretty poor implementation)
if has('mac')
    noremap  √ :r!pbpaste<CR>
    noremap! √ <Esc>√
endif

""" screen.vim REPL: http://github.com/ervandew/vimfiles
" send paragraph to parallel process
vmap <C-c><C-c> :ScreenSend<CR>
nmap <C-c><C-c> mCvip<C-c><C-c>`C
imap <C-c><C-c> <Esc><C-c><C-c><Right>
" set shell region height
let g:ScreenShellHeight = 12


"------ Filetypes ------"

" Vimscript
autocmd FileType vim setlocal expandtab shiftwidth=4 tabstop=8 softtabstop=4

" Shell
autocmd FileType sh setlocal expandtab shiftwidth=4 tabstop=8 softtabstop=4

" Lisp
autocmd Filetype lisp,scheme setlocal equalprg=~/.vim/bin/lispindent.lisp expandtab shiftwidth=2 tabstop=8 softtabstop=2

" Ruby
autocmd FileType ruby setlocal expandtab shiftwidth=2 tabstop=2 softtabstop=2

" PHP
autocmd FileType php setlocal expandtab shiftwidth=4 tabstop=4 softtabstop=4

" X?HTML & XML
autocmd FileType html,xhtml,xml setlocal expandtab shiftwidth=2 tabstop=2 softtabstop=2

" CSS
autocmd FileType css setlocal expandtab shiftwidth=4 tabstop=4 softtabstop=4

" JavaScript
" autocmd BufRead,BufNewFile *.json setfiletype javascript
autocmd FileType javascript setlocal expandtab shiftwidth=2 tabstop=2 softtabstop=2
let javascript_enable_domhtmlcss=1

"------ END VIM-500 ------"

endif " version >= 500

fyi, 'smartindent' ล้าสมัย (cindent แทนที่มัน) และไม่ได้ทำอะไรเลยเมื่อคุณใช้การเยื้องของไฟล์และจะใช้งานได้เฉพาะเมื่อมันไม่มีประโยชน์เท่านั้น
graywh

7
syntax on
set cindent
set ts=4
set sw=4
set backspace=2
set laststatus=2
set nohlsearch
set modeline
set modelines=3
set ai
map Q gq

set vb t_vb=

set nowrap
set ss=5
set is
set scs
set ru

map <F2> <Esc>:w<CR>
map! <F2> <Esc>:w<CR>

map <F10> <Esc>:qa<CR>
map! <F10> <Esc>:qa<CR>

map <F9>  <Esc>:wqa<CR>
map! <F9>  <Esc>:wqa<CR>

inoremap <s-up> <Esc><c-w>W<Ins>
inoremap <s-down> <Esc><c-w>w<Ins>

nnoremap <s-up> <c-w>W
nnoremap <s-down> <c-w>w

" Fancy middle-line <CR>
inoremap <C-CR> <Esc>o
nnoremap <C-CR> o

" This is the way I like my quotation marks and various braces
inoremap '' ''<Left>
inoremap "" ""<Left>
inoremap () ()<Left>
inoremap <> <><Left>
inoremap {} {}<Left>
inoremap [] []<Left>
inoremap () ()<Left>

" Quickly set comma or semicolon at the end of the string
inoremap ,, <End>,
inoremap ;; <End>;
au FileType python inoremap :: <End>:


au FileType perl,python set foldlevel=0
au FileType perl,python set foldcolumn=4
au FileType perl,python set fen
au FileType perl        set fdm=syntax
au FileType python      set fdm=indent
au FileType perl,python set fdn=4
au FileType perl,python set fml=10
au FileType perl,python set fdo=block,hor,mark,percent,quickfix,search,tag,undo,search

au FileType perl,python abbr sefl self
au FileType perl abbr sjoft shift
au FileType perl abbr DUmper Dumper

function! ToggleNumberRow()
       if !exists("g:NumberRow") || 0 == g:NumberRow
               let g:NumberRow = 1
               call ReverseNumberRow()
       else
               let g:NumberRow = 0
               call NormalizeNumberRow()
       endif
endfunction


" Reverse the number row characters
function! ReverseNumberRow()
       " map each number to its shift-key character
       inoremap 1 !
       inoremap 2 @
       inoremap 3 #
       inoremap 4 $
       inoremap 5 %
       inoremap 6 ^
       inoremap 7 &
       inoremap 8 *
       inoremap 9 (
       inoremap 0 )
       inoremap - _
    inoremap 90 ()<Left>
       " and then the opposite
       inoremap ! 1
       inoremap @ 2
       inoremap # 3
       inoremap $ 4
       inoremap % 5
       inoremap ^ 6
       inoremap & 7
       inoremap * 8
       inoremap ( 9
       inoremap ) 0
       inoremap _ -
endfunction

" DO the opposite to ReverseNumberRow -- give everything back
function! NormalizeNumberRow()
       iunmap 1
       iunmap 2
       iunmap 3
       iunmap 4
       iunmap 5
       iunmap 6
       iunmap 7
       iunmap 8
       iunmap 9
       iunmap 0
       iunmap -
       "------
       iunmap !
       iunmap @
       iunmap #
       iunmap $
       iunmap %
       iunmap ^
       iunmap &
       iunmap *
       iunmap (
       iunmap )
       iunmap _
       inoremap () ()<Left>
endfunction

"call ToggleNumberRow()
nnoremap <M-n> :call ToggleNumberRow()<CR>

" Add use <CWORD> at the top of the file
function! UseWord(word)
       let spec_cases = {'Dumper': 'Data::Dumper'}
       let my_word = a:word
       if has_key(spec_cases, my_word)
               let my_word = spec_cases[my_word]
       endif

       let was_used = search("^use.*" . my_word, "bw")

       if was_used > 0
               echo "Used already"
               return 0
       endif

       let last_use = search("^use", "bW")
       if 0 == last_use
               last_use = search("^package", "bW")
               if 0 == last_use
                       last_use = 1
               endif
       endif

       let use_string = "use " . my_word . ";"
       let res = append(last_use, use_string)
       return 1
endfunction

function! UseCWord()
       let cline = line(".")
       let ccol = col(".")
       let ch = UseWord(expand("<cword>"))
       normal mu
       call cursor(cline + ch, ccol)

endfunction

function! GetWords(pattern)
       let cline = line(".")
       let ccol = col(".")
       call cursor(1,1)

       let temp_dict = {}
       let cpos = searchpos(a:pattern)
       while cpos[0] != 0
               let temp_dict[expand("<cword>")] = 1
               let cpos = searchpos(a:pattern, 'W')
       endwhile

       call cursor(cline, ccol)
       return keys(temp_dict)
endfunction

" Append the list of words, that match the pattern after cursor
function! AppendWordsLike(pattern)
       let word_list = sort(GetWords(a:pattern))
       call append(line("."), word_list)
endfunction


nnoremap <F7>  :call UseCWord()<CR>

" Useful to mark some code lines as debug statements
function! MarkDebug()
       let cline = line(".")
       let ctext = getline(cline)
       call setline(cline, ctext . "##_DEBUG_")
endfunction

" Easily remove debug statements
function! RemoveDebug()
       %g/#_DEBUG_/d
endfunction

au FileType perl,python inoremap <M-d> <Esc>:call MarkDebug()<CR><Ins>
au FileType perl,python inoremap <F6> <Esc>:call RemoveDebug()<CR><Ins>
au FileType perl,python nnoremap <F6> :call RemoveDebug()<CR>

" end Perl settings

nnoremap <silent> <F8> :TlistToggle<CR>
inoremap <silent> <F8> <Esc>:TlistToggle<CR><Esc>

function! AlwaysCD()
       if bufname("") !~ "^scp://" && bufname("") !~ "^sftp://" && bufname("") !~ "^ftp://"
               lcd %:p:h
       endif
endfunction
autocmd BufEnter * call AlwaysCD()

function! DeleteRedundantSpaces()
       let cline = line(".")
       let ccol = col(".")
       silent! %s/\s\+$//g
       call cursor(cline, ccol)
endfunction
au BufWrite * call DeleteRedundantSpaces()

set nobackup
set nowritebackup
set cul

colorscheme evening

autocmd FileType python set formatoptions=wcrq2l
autocmd FileType python set inc="^\s*from"
autocmd FileType python so /usr/share/vim/vim72/indent/python.vim

autocmd FileType c      set si
autocmd FileType mail   set noai
autocmd FileType mail   set ts=3
autocmd FileType mail   set tw=78
autocmd FileType mail   set shiftwidth=3
autocmd FileType mail   set expandtab
autocmd FileType xslt   set ts=4
autocmd FileType xslt   set shiftwidth=4
autocmd FileType txt    set ts=3
autocmd FileType txt    set tw=78
autocmd FileType txt    set expandtab

" Move cursor together with the screen
noremap <c-j> j<c-e>
noremap <c-k> k<c-y>

" Better Marks
nnoremap ' `

6

การแก้ไขข้อผิดพลาดทั่วไปบางอย่างช่วยให้ฉันประหยัดเวลาได้อย่างน่าประหลาดใจ:

:command WQ wq
:command Wq wq
:command W w
:command Q q

iab anf and
iab adn and
iab ans and
iab teh the
iab thre there

25
ฉันไม่ชอบสิ่งนี้ - เพียงแค่ฝึกอบรมข้อผิดพลาด
Svante

ฉันชอบคำนี้และที่นั่น แต่ไม่ใช่เพื่อการช่วยกู้และเลิก
sixtyfootersdude

3
@Svante ปกติฉันจะเห็นด้วยยกเว้นฉันมีสิ่งนี้ในคำสั่งของฉันด้วยฉันมักจะบันทึกบ่อยหรือบันทึก / ออกบ่อย บ่อยครั้งที่พิ้งกี้ของฉันเป็นเพียงเศษเสี้ยวของวินาทีช้าเกินไปเมื่อยกออกจากปุ่ม Shift และ BAM หนึ่งหรือท้ายอื่น ๆ ที่เป็นตัวพิมพ์ใหญ่มันน่ารำคาญ!
ฟาโรห์

1
vi ถูกเขียนบนและสำหรับเทอร์มินัล ADM3A ซึ่งมีคีย์ที่กำหนดไว้สำหรับโคลอน (:) ดังนั้นคุณไม่จำเป็นต้องกด shift หากคุณทำการแมปคีย์ที่ไม่ได้ใช้งานตามปกติในโหมดปกติ / ภาพเช่นสเปซบาร์คุณจะไม่พบปัญหานี้มากนัก nnoremap <Space>: และ vnomap <Space>: en.wikipedia.org/wiki/File:KB_Terminal_ADM3A.svg
aoeu

ฉันชอบสิ่งนี้สำหรับคำสั่งบันทึก / ออก แต่ไม่ใช่สำหรับคำ หากคุณทำผิดพลาดเมื่อไม่มีตาข่ายนิรภัย Vim จะบอกความผิดพลาดของคุณ หากคุณสะกดว่า "teh" เมื่อไม่มีการแก้ไขอัตโนมัติคุณจะไม่สังเกตเห็นและคุณจะไม่ได้รับการศึกษา
Robert Martin

5

ฉันไม่ได้ตระหนักว่าจำนวนบรรทัด 3200 .vimrc ของฉันเป็นเพียงสำหรับความต้องการที่แปลกประหลาดของฉันและจะไม่น่าสนใจในรายการที่นี่ แต่นั่นอาจเป็นเหตุผลว่าทำไมกลุ่มมีประโยชน์มาก ...

iab AlP ABCDEFGHIJKLMNOPQRSTUVWXYZ
iab MoN January February March April May June July August September October November December
iab MoO Jan Feb Mar Apr May Jun Jul Aug Sep Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
iab NuM 12345678901234567890123456789012345678901234567890123456789012345678901234567890 
iab RuL ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

" Highlight every other line
map ,<Tab> :set hls<CR>/\\n.*\\n/<CR>

" This is for working across multiple xterms and/or gvims
" Transfer/read and write one block of text between vim sessions (capture whole line):
" Write
nmap ;w :. w! ~/.vimxfer<CR>
" Read
nmap ;r :r ~/.vimxfer<CR>
" Append 
nmap ;a :. w! >>~/.vimxfer<CR>

5

บรรทัด 242 ของฉัน.vimrcไม่น่าสนใจ แต่เนื่องจากไม่มีใครพูดถึงฉันรู้สึกว่าฉันต้องแชร์การแมปที่สำคัญที่สุดสองรายการที่ปรับปรุงขั้นตอนการทำงานของฉันนอกเหนือจากการแมปเริ่มต้น:

map <C-j> :bprev<CR>
map <C-k> :bnext<CR>
set hidden " this will go along

อย่างจริงจังเปลี่ยนบัฟเฟอร์เป็นสิ่งที่จะต้องทำบ่อยมาก แน่นอนว่า Windows แต่ทุกอย่างไม่พอดีกับหน้าจอ

ชุดแผนที่ที่คล้ายกันสำหรับการเรียกดูข้อผิดพลาดอย่างรวดเร็ว (ดูคำแนะนำด่วน) และผลลัพธ์ grep:

map <C-n> :cn<CR>
map <C-m> :cp<CR>

ง่ายสะดวกและมีประสิทธิภาพ


ฉันไม่ได้สลับไปมาระหว่างบัฟเฟอร์มากนักเนื่องจาก Vim ได้รับการสนับสนุนแท็บ ฉันมีปุ่มพิเศษ "ย้อนกลับ" และ "ส่งต่อ" บนคีย์บอร์ดของฉันแมปกับคำสั่งการนำทางของแท็บ
Don Reba

@ Don Reba คุณรู้ไหมว่าแท็บเพิ่งจำลองฟังก์ชันการทำงานของบัฟเฟอร์บางส่วน ดังนั้นจึงไม่มีความแตกต่างในการ "ใช้" บัฟเฟอร์หรือแท็บ ครูสอนจะบอกว่าแท็บนั้นมีจุดประสงค์เพื่อจัดระเบียบงานเพื่อแยกภูมิภาคและไม่มีอะไรเพิ่มเติม ทั้งหมดที่ฉันพูดคือบัฟเฟอร์มีความสะดวกสบายทั้งหมดและฉันได้ทิ้งไว้โดยใช้แท็บการจองสิ่งเหล่านี้กับสิ่งอื่นที่ควรมีสิ่งที่เป็นนามธรรมที่สูงขึ้นมาต้องการ :)
nperson325681

4

set nobackup 
set nocp
set tabstop=4
set shiftwidth=4
set et
set ignorecase

set ai
set ruler
set showcmd
set incsearch
set dir=$temp       " Make swap live in the %TEMP% directory
syn on

" Load the color scheme
colo inkpot

4

ฉันใช้ cscope จากภายในกลุ่ม (ใช้ประโยชน์จากหลาย ๆ บัฟเฟอร์) ฉันใช้ control-K เพื่อเริ่มต้นคำสั่งส่วนใหญ่ (ถูกขโมยจาก ctags ตามที่ฉันจำได้) นอกจากนี้ฉันได้สร้างไฟล์. cscope.out แล้ว

ถ้ามี ("cscope")

set cscopeprg=/usr/local/bin/cscope
set cscopetagorder=0
set cscopetag
set cscopepathcomp=3
set nocscopeverbose
cs add .cscope.out
set csverb

"
" cscope find
"
" 0 or s: Find this C symbol
" 1 or d: Find this definition
" 2 or g: Find functions called by this function
" 3 or c: Find functions calling this function
" 4 or t: Find assignments to
" 6 or e: Find this egrep pattern
" 7 or f: Find this file
" 8 or i: Find files #including this file
" 
map ^Ks     :cs find 0 <C-R>=expand("<cword>")<CR><CR>
map ^Kd     :cs find 1 <C-R>=expand("<cword>")<CR><CR>
map ^Kg     :cs find 2 <C-R>=expand("<cword>")<CR><CR>
map ^Kc     :cs find 3 <C-R>=expand("<cword>")<CR><CR>
map ^Kt     :cs find 4 <C-R>=expand("<cword>")<CR><CR>
map ^Ke     :cs find 6 <C-R>=expand("<cword>")<CR><CR>
map ^Kf     :cs find 7 <C-R>=expand("<cfile>")<CR><CR>
map ^Ki     :cs find 8 <C-R>=expand("%")<CR><CR>

endif



3

ฉันใช้ OS X ดังนั้นสิ่งเหล่านี้บางอย่างอาจมีค่าเริ่มต้นที่ดีกว่าบนแพลตฟอร์มอื่น ๆ แต่ไม่ว่า:

syntax on
set tabstop=4
set expandtab
set shiftwidth=4

1
คุณอาจต้องการที่จะมองขึ้นและใช้แทนsofttabstop tabstopการออกจากtabstopค่าเริ่มต้นที่ 8 จะช่วยเมื่ออ่านไฟล์ที่ผู้อื่นสร้างด้วยแท็บ
Greg Hewgill

6
OSX เกี่ยวข้องกับแท็บอย่างไร
aehlke

3
map = }{!}fmt^M}
map + }{!}fmt -p '> '^M}
set showmatch

= สำหรับการจัดรูปแบบย่อหน้าปกติใหม่ + สำหรับการจัดรูปแบบย่อหน้าใหม่ในอีเมลที่เสนอราคา showmatch สำหรับการกระพริบวงเล็บ / วงเล็บที่ตรงกันเมื่อฉันพิมพ์วงเล็บปิดหรือวงเล็บ


3

ใช้ไฟล์ 'แท็ก' ครั้งแรกที่มีในโครงสร้างไดเรกทอรี:

:set tags=tags;/

ด้านซ้ายและขวาใช้สำหรับเปลี่ยนบัฟเฟอร์ไม่ย้ายเคอร์เซอร์:

map <right> <ESC>:bn<RETURN>
map <left> <ESC>:bp<RETURN>

ปิดใช้งานการไฮไลต์การค้นหาด้วยการกดปุ่มเดียว:

map - :nohls<cr>

3
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab autoindent cindent 
set encoding=utf-8 fileencoding=utf-8
set nobackup nowritebackup noswapfile autoread
set number
set hlsearch incsearch ignorecase smartcase

if has("gui_running")
    set lines=35 columns=140
    colorscheme ir_black
else
    colorscheme darkblue
endif

" bash like auto-completion
set wildmenu
set wildmode=list:longest

inoremap <C-j> <Esc>

" for lusty explorer
noremap glr \lr
noremap glf \lf
noremap glb \lb

" use ctrl-h/j/k/l to switch between splits
map <c-j> <c-w>j
map <c-k> <c-w>k
map <c-l> <c-w>l
map <c-h> <c-w>h

" Nerd tree stuff
let NERDTreeIgnore = ['\.pyc$', '\.pyo$']
noremap gn :NERDTree<Cr>

" cd to the current file's directory
noremap gc :lcd %:h<Cr>

ฉันชอบสิ่งที่เกิดขึ้นมากมายในการกำหนดค่าของคุณ หลายชุดต่อบรรทัดif has("gui_running")และแผนที่ยอดเยี่ยม ฉันได้คัดลอกการกำหนดค่าส่วนใหญ่ของคุณไปยังของฉันแล้ว ขอขอบคุณ!
Justin Force

3

ใส่สิ่งนี้ไว้ใน vimrc ของคุณ:

imap <C-l> <Space>=><Space>

และอย่าคิดจะพิมพ์ hashrocket อีกเลย ใช่ฉันรู้ว่าคุณไม่จำเป็นต้องใช้ Ruby 1.9 แต่ไม่เป็นไรหรอก

vimrc เต็มรูปแบบของฉันคือที่นี่


นี้เป็นความคิดที่ดี แต่ผมจะแนะนำเพียงทำแผนที่สำหรับไฟล์ทับทิม:autocmd FileType ruby imap <C-l> <Space>=><Space>
csexton

คุณช่วยอธิบายสิ่งที่ทำให้คน Emac ที่ไม่รู้จักรูบีได้บ้าง?
โทมัส

สิ่งนี้จะเพิ่มฮ็อตคีย์ควบคุม -L ไปที่โหมดแทรกของ Vim เพื่อพิมพ์ hashrocket พร้อมช่องว่าง (=>) โดยอัตโนมัติ hashrocket เป็นตัวดำเนินการค่ารูบี้สำหรับแฮช
dpogg1

2

คุณจะต้องไล่ฉันออก configsตัวเอง มีความสุข. ส่วนใหญ่เป็นเพียงการตั้งค่าที่ฉันต้องการรวมถึงการแมปและสิ่งที่เกี่ยวข้องกับไวยากรณ์แบบสุ่มรวมถึงการตั้งค่าการพับและการกำหนดค่าปลั๊กอินบางส่วนตัวแยกวิเคราะห์การคอมไพล์ของเท็กซัส ฯลฯ

BTW สิ่งที่ฉันพบว่ามีประโยชน์มากคือ "เน้นคำใต้เคอร์เซอร์":

 highlight flicker cterm=bold ctermfg=white
 au CursorMoved <buffer> exe 'match flicker /\V\<'.escape(expand('<cword>'), '/').'\>/'

โปรดทราบว่าเฉพาะctermและถูกนำมาใช้เพราะผมไม่ได้ใช้termfg gvimหากคุณต้องการที่จะทำงานในgvimเพียงแค่พวกเขาด้วยguiและguifgตามลำดับ


วิธีการทำให้มันทำงานกับหลายหน้าต่างที่เปิดอยู่? ดูเหมือนว่าจะทำงานเฉพาะกับตัวหลักที่เปิดตัวเป็นบัฟเฟอร์แรก
โอ้

2

ฉันพยายามเก็บ. vimrc ของฉันไว้มีประโยชน์โดยทั่วไปมากที่สุด

เคล็ดลับที่มีประโยชน์คือเครื่องมือจัดการไฟล์. gpg เพื่อแก้ไขอย่างปลอดภัย:

au BufNewFile,BufReadPre *.gpg :set secure vimi= noswap noback nowriteback hist=0 binary
au BufReadPost *.gpg :%!gpg -d 2>/dev/null
au BufWritePre *.gpg :%!gpg -e -r 'name@email.com' 2>/dev/null
au BufWritePost *.gpg u

2

1) ฉันชอบสถานะ (พร้อมชื่อไฟล์ค่า ascii (ฐานสิบ) ค่าฐานสิบหกและบรรทัดมาตรฐาน cols และ%):

set statusline=%t%h%m%r%=[%b\ 0x%02B]\ \ \ %l,%c%V\ %P
" Always show a status line
set laststatus=2
"make the command line 1 line high
set cmdheight=1

2) ฉันชอบแมปสำหรับ windows แบบแยก

" <space> switches to the next window (give it a second)
" <space>n switches to the next window
" <space><space> switches to the next window and maximizes it
" <space>= Equalizes the size of all windows
" + Increases the size of the current window
" - Decreases the size of the current window

 :map <space> <c-W>w
:map <space>n <c-W>w
:map <space><space> <c-W>w<c-W>_
:map <space>= <c-W>=
if bufwinnr(1)
  map + <c-W>+
  map - <c-W>-
endif

2

มีอะไรไม่จริงใน. vimrc ของฉัน (แม้ว่าจะมี 850 บรรทัด) การตั้งค่าส่วนใหญ่และการแมปทั่วไปและเรียบง่ายสองสามอย่างที่ฉันขี้เกียจเกินกว่าที่จะแยกลงในปลั๊กอิน

หากคุณหมายถึง "เทมเพลตไฟล์" โดย "คลาสอัตโนมัติ" ฉันใช้ปลั๊กอินตัวขยายเทมเพลต - ในเว็บไซต์เดียวกันนี้คุณจะพบว่า ftplugins ที่ฉันได้กำหนดไว้สำหรับการแก้ไข C & C ++ บางคนอาจปรับใช้กับ C # ฉันเดา

ในส่วนของการปรับโครงสร้างนั้นมีคำแนะนำเฉพาะสำหรับหัวข้อนี้ในhttp://vim.wikia.com ; IIRC รหัสตัวอย่างสำหรับ C # มันเป็นแรงบันดาลใจให้ฉันปลั๊กอินการเปลี่ยนโครงสร้างที่ยังคงต้องการงานจำนวนมาก

คุณควรดูเอกสารสำคัญของรายการส่งเมล vim โดยเฉพาะหัวข้อเกี่ยวกับการใช้ vim เป็น IDE ที่มีประสิทธิภาพ อย่าลืมดู: ทำแท็ก ...

HTH,


2

.vimrc ของฉันครอบคลุมถึงสิ่งต่อไปนี้:

set statusline=%2*%n\|%<%*%-.40F%2*\|\ %2*%M\ %3*%=%1*\ %1*%2.6l%2*x%1*%1.9(%c%V%)%2*[%1*%P%2*]%1*%2B

ฉันเบื่อในขณะที่เรียนรู้รอบชิงชนะเลิศระดับมัธยมปลาย


คุณช่วยอธิบายสิ่งนี้ได้ไหม
วีเจย์ Dev

มันแสดงให้เห็นบรรทัดสถานะที่มีหมายเลขบัฟเฟอร์ชื่อไฟล์สถานะการปรับเปลี่ยนตำแหน่งภายในบัฟเฟอร์และรหัสฐานสิบหกของตัวละครภายใต้เคอร์เซอร์ รูปแบบและสีสวยงาม
Tadeusz A. Kadłubowski

1

นี่คือ. vimrc ของฉัน ฉันใช้ Gvim 7.2

set guioptions=em
set showtabline=2
set softtabstop=2
set shiftwidth=2
set tabstop=2

" Use spaces instead of tabs
set expandtab
set autoindent

" Colors and fonts
colorscheme inkpot
set guifont=Consolas:h11:cANSI

"TAB navigation like firefox
:nmap <C-S-tab> :tabprevious<cr>
:nmap <C-tab> :tabnext<cr>
:imap <C-S-tab> <ESC>:tabprevious<cr>i
:imap <C-tab> <ESC>:tabnext<cr>i
:nmap <C-t> :tabnew<cr>
:imap <C-t> <ESC>:tabnew<cr>i
:map <C-w> :tabclose<cr>

" No Backups and line numbers
set nobackup
set number
set nuw=6

" swp files are saved to %Temp% folder
set dir=$temp
" sets the default size of gvim on open
set lines=40 columns=90

1

ของฉัน.vimrcคืออะไร

ngn@macavity:~$ cat .vimrc
" This file intentionally left blank

ไฟล์ config ที่แท้จริงอยู่ภายใต้ ~/.vim/ :)

และสิ่งต่าง ๆ ส่วนใหญ่มีการเบียดบังความพยายามของคนอื่นซึ่งดัดแปลงมาจากความvim.orgได้เปรียบในการแก้ไขของฉันอย่างโจ่งแจ้ง


2
ฉันเกือบจะมีสิ่งนี้ แต่. vimrc จำเป็นต้องมี "set nocompatible" หากคุณใช้คุณสมบัติเหล่านั้นใช่ไหม อย่างน้อยการลบออกทำให้เกิดข้อผิดพลาดในการโหลดที่นี่!
richq
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.