Чи однакові файли vimrc та viminfo, але з різними іменами?


29

Є .vimrcі .viminfoті ж файли, але з різними іменами?

У кожному підручнику є поради щодо змін .vimrc, але у мене немає лише цього файлу .viminfo. Вони однакові?

Відповіді:


40

Вони не однакові. Vimrc - це файл, який ви редагуєте, щоб змінити поведінку vim. Це файл конфігурації.

Viminfo - це схоже на кеш, щоб постійно зберігати вирізані буфери та інші речі.

З Документів ( :help viminfo):

The viminfo file is used to store:
- The command line history.
- The search string history.
- The input-line history.
- Contents of non-empty registers.
- Marks for several files.
- File marks, pointing to locations in files.
- Last search/substitute pattern (for 'n' and '&').
- The buffer list.
- Global variables.

Іншими словами, Vim пише цей файл, а не ви.

Ось приклад один (модифікована моя власна версія).

if has("python")
    python import sys
    python import os
    python import vim
    python sys.argv = [vim.eval("v:progname")] 
endif

set nocompatible            " Use Vim defaults (much better!)
set bs=2                    " allow backspacing over everything in insert mode
set nobackup                " Don't keep a backup file
set viminfo='20,\"90,h,%    " read/write a .viminfo file
set history=500
set statusline=%<%f%m%r%y%=%b\ 0x%B\ \ %l,%c%V\ %P
set laststatus=2            " always a status line

set dir=~/.vim/tmp//        " Put all swap files in common location (out of workspace and NFS volumes)
" set undodir=~/.vim/tmp/undo//
" set undofile
set hidden                  " allow editing in multiple buffers

set incsearch
set ignorecase
set smartcase

set scrolloff=3

" GUI options that need to be set here first
" Remove exta, useless button bar.
set guioptions-=T
set guioptions+=t

set encoding=utf-8

" Don't use Ex mode, use Q for formatting
map Q gq

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax enable
  set hlsearch
  " colorscheme mycolors
endif

filetype plugin on
filetype indent on

augroup cprog
  " Remove all cprog autocommands
  au!

  " When starting to edit a file:
  "   For C and C++ files set formatting of comments and set C-indenting on.
  "   For other files switch it off.
  "   Don't change the order, it's important that the line with * comes first.
  autocmd FileType *      set formatoptions=tcql nocindent comments&
  autocmd FileType c,cpp  set formatoptions=croql cindent comments=sr:/*,mb:*,el:*/,://
augroup END

augroup newfile 
  au!
  autocmd BufNewFile            *.html  0r      ~/Templates/HTML4.html
  autocmd BufNewFile            *.xhtml 0r      ~/Templates/XHTML.xhtml
  autocmd BufNewFile            *.c     0r      ~/Templates/C.c
  autocmd BufNewFile            *.py    0r      ~/Templates/Python.py
  autocmd BufNewFile            *.js    0r      ~/Templates/Javascript.js
  autocmd BufNewFile            *.txt   0r      ~/Templates/RST.rst
  autocmd BufNewFile            *.rst   0r      ~/Templates/RST.rst
augroup END

2
Тоді я не можу знайти vimrc, я намагаюся знайти ~ -name * vimrc, результат порожній, я повинен його створити?
Сергій

8
@Sergey: традиційно файли конфігурації з'являються лише тоді, коли ви , користувач, створюєте їх. (Немає сенсу зберігати кілька десятків порожніх файлів rc для кожної встановленої програми.)
grawity

Якщо ви зіткнулися з проблемою розміщення свого власного .vimrc, може бути корисно вказати, що робить кожен рядок. (Ви вже прокоментували деякі з них)
Стюарт

6

Якщо .vimrc не існує, вам слід створити його. Я рекомендую розмістити конфігураційний файл у github та створити символічне посилання на ваш .vimrc


В даний час я надсилаю більшість своїх rc-файлів до репортажу github як для простоти дублювання моєї конфігурації на машинах, так і для швидкого обміну з колегами. Що б точно допомогло символічне посилання?
Qcom

2
@Qcom: Символічне посилання дозволяє нам легко підтримувати одну канонічну версію нашого файлу ~ / .vimrc. Ця версія зберігається в git. Ми можемо редагувати цей файл, а потім перенести його до нашого сховища. Усі інші машини, які витягнули найновішу копію нашого репо, побачать зміни. В іншому випадку ми би відредагували файл, скопіювали його в репо, а потім натисніть на нього. Це зайвий крок. Це також схильне до помилок, оскільки ми, ймовірно, «забудемо» скопіювати його в репо.
ccalvert
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.