📄 vimrc
字号:
"############################################################################"# Vim config (Recommended) from Appendix C of "Perl Best Practices" #"# Copyright (c) O'Reilly & Associates, 2005. All Rights Reserved. #"# See: http://www.oreilly.com/pub/a/oreilly/ask_tim/2001/codepolicy.html #"############################################################################set autoindent "Preserve current indent on new linesset textwidth=78 "Wrap at this columnset backspace=indent,eol,start "Make backspaces delete sensibly set tabstop=4 "Indentation levels every four columnsset expandtab "Convert all tabs typed to spacesset shiftwidth=4 "Indent/outdent by four columnsset shiftround "Indent/outdent to nearest tabstop set matchpairs+=<:> "Allow % to bounce between angles too "Inserting these abbreviations inserts the corresponding Perl statement...iab phbp #! /usr/bin/perl -w iab pdbg use Data::Dumper 'Dumper';
warn Dumper [];hiiab pbmk use Benchmark qw( cmpthese );
cmpthese -10, {};O iab pusc use Smart::Comments;
### iab putm use Test::More qw( no_plan ); iab papp :r ~/.code_templates/perl_application.pl
iab pmod :r ~/.code_templates/perl_module.pm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -