• Stars
    star
    911
  • Rank 50,145 (Top 1.0 %)
  • Language
    Vim Script
  • License
    MIT License
  • Created over 8 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Personal Vim Profile

vim

个人 Vim 配置,不一定适合每个人,选择你需要的整合到自己配置中:

配置入口是 init.vim,主要配置集中在 init 目录下面。

(本文档严重滞后于功能,懒得更新了)

Install

Linux:

  • 新建 ~/.vim 目录,把项目克隆到 ~/.vim/vim 下面:
cd ~/.vim
git clone https://github.com/skywind3000/vim.git
  • 编辑 ~/.vimrc 文件,里面加一行:
so ~/.vim/vim/init.vim
so ~/.vim/vim/skywind.vim

Windows:

  • 新建 D:\github 目录,把项目克隆到 D:\github\vim 下面:
d:
cd \github
git clone https://github.com/skywind3000/vim.git
  • 新建 C:\Users\YourName\.vim 目录:
C:\
CD \Users\YourName
mkdir .vim
  • 编辑 C:\Users\YourName\_vimrc 文件,里面加一行:
so d:/github/vim/init.vim
so d:/github/vim/skywind.vim

包管理:

在你的 .vimrc 文件中加入相关包配置:

let g:bundle_group = ['simple', 'basic', 'inter', 'opt', 'ale', 'echodoc']
so ~/.vim/vim/bundle.vim

Windows 下修改对应目录。

本配置依个人习惯,将 tabsize shiftwidth 等设置成了 4个字节宽度,并且关闭了 expandtab,不喜欢的话可以在 source 了两个文件以后覆盖该设置。

主目录

主目录位于顶部,连续按两次空格 <space><space> 展开:

picture-vim-menu

主目录可以用 hjkl 来浏览,空格或者回车选中,按 ESC 离开,大部分功能都能在这里找到。

(需要 Vim 8.2 +)

扩展目录

扩展目录位于底部,连续按两次 TAB 键可以看到:

picture-vim-menu2

ESC 离开目录,按对应字母触发功能,CTRL+j/k 翻页,BackSpace 可以回到上一级

(需要 Vim 8.0+)

Keymap

光标移动

除了 NORMAL 模式 HJKL 移动光标外,新增加所有模式的光标移动快捷键:

按键 说 明
C-H 光标左移
C-J 光标下移
C-K 光标上移
C-L 光标右移

这样 INSERT下面移动几个字符,或者 COMMAND 模式下左右上下移动都都可以这么来。不喜欢可以后面 unmap 掉,但是有时候稍微移动一下还要去切换模式挺蛋疼的。

大部分默认终端都没问题,一些老终端软件,如 Xshell/SecureCRT,需要确认一下 Backspace 键的编码为 127 (CTRL-?) 或者勾选 Backspace sends delete,保证按下 BS 键时发送 ASCII 码 127 而不是 8 (CTRL-H) 。

插入模式

按键 说 明
C-A 移动到行首
C-E 移动到行尾
C-D 删除当前字符

命令模式

按键 说 明
C-A 移动到行首
C-E 移动到行尾
C-D 光标删除当前字符
C-P 历史上一条命令
C-N 历史下一条命令

窗口跳转

按键 说 明
TAB h 同 CTRL-W h
TAB j 同 CTRL-W j
TAB k 同 CTRL-W k
TAB l 同 CTRL-W l

先按 TAB键,再按 HJKL 其中一个来跳转窗口。

TabPage

除了使用原生的 TabPage 切换命令 1gt, 2gt, 3gt ... 来切换标签页外,定义了如下几个快捷命令:

按键 说 明
\1 先按反斜杠 \再按 1,切换到第一个标签页
\2 切换到第二个标签页
... ...
\9 切换到第九个标签页
\0 切换到第十个标签页
\t 新建标签页,等同于 :tabnew
\g 关闭标签页,等同于 :tabclose
TAB n 下一个标签页,同 :tabnext
TAB p 上一个标签页,同 :tabprev

还可以使用 ALT+1 到 ALT+9 来切换,前提是终端软件需要配置一下,有些终端 ALT_1 到 ALT_9 被用来切换 connection 的 tab,那么可以把 ALT+SHIFT+1-9 配置成发送字符串:\0331\0339 等几个不同字符串,其中 \033 是 ESC键的编码,这样不影响终端软件的 ALT_1-9 情况下,用 ALT_SHIFT_1-9 来代替。

功能键

Key Task Description
F5 file-run 运行当前程序,自动检测 C/Python/Ruby/Shell/JavaScript,并调用正确命令运行
F6 make 运行 make 任务
F7 emake 调用 emake 编译当前项目文件, $PATH 中需要有 emake 可执行
F8 emake-exe 调用 emake 运行当前项目文件, $PATH 中需要有 emake 可执行
F9 file-build 调用 gcc 编译当前 C/C++ 程序,$PATH 中需要有 gcc可执行,编译到当前目录下
F11 file-debug 调试当前程序
S-F5 project-run 运行当前项目,请用 S-F12 编辑当前项目 .tasks 文件中的 project-run 方法
S-F6 project-test 测试当前项目,请用 S-F12 编辑当前项目 .tasks 文件中的 project-test 方法
S-F7 project-init 测试当前项目,请用 S-F12 编辑当前项目 .tasks 文件中的 project-init 方法
S-F8 project-install 测试当前项目,请用 S-F12 编辑当前项目 .tasks 文件中的 project-install 方法
S-F9 project-build 测试当前项目,请用 S-F12 编辑当前项目 .tasks 文件中的 project-build 方法
S-F11 project-debug 调试当前项目
F10 非任务 打开/关闭 quickfix
F12 非任务 打开所有任务,让你选择
S-F12 非任务 编辑当前项目的 task

全局任务配置文件在本仓库根目录的 tasks.ini 里描述。

文件浏览

该功能主要是使用 Vim 自带的 dirvish/netrw 被编辑文件的目录,方便各种方式切换文件

按键 说明
+ 在当前窗口打开文件浏览器,浏览之前文件所在目录
TAB 6 在左边新窗口打开文件浏览器,浏览之前文件所在目录
TAB 7 在右边新窗口打开文件浏览器,浏览之前文件所在目录
TAB 8 在下边新窗口打开文件浏览器,浏览之前文件所在目录
TAB 9 在新标签打开文件浏览器,浏览之前文件所在目录

使用 + 返回当前文件所在目录时,如果文件被修改过未保存,且 Vim 没有设置 hidden,则会在该文件窗口上面打开目录浏览,不会把文件关掉。

当文件浏览器打开以后,按 ~ 键,返回用户目录($HOME);按 反引号(1左边那个键),返回项目根目录,详细见:Vinegar

More Repositories

1

kcp

⚡ KCP - A Fast and Reliable ARQ Protocol
C
15,270
star
2

awesome-cheatsheets

超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 ⚡
Shell
11,094
star
3

ECDICT

Free English to Chinese Dictionary Database
Python
5,922
star
4

preserve-cd

Game Preservation Project
3,654
star
5

z.lua

⚡ A new cd command that helps you navigate faster by learning your habits.
Lua
2,979
star
6

mini3d

3D Software Renderer in 700 Lines !!
C
2,173
star
7

asyncrun.vim

🚀 Run Async Shell Commands in Vim 8.0 / NeoVim and Output to the Quickfix Window !!
Vim Script
1,852
star
8

RenderHelp

⚡ 可编程渲染管线实现,帮助初学者学习渲染
C++
1,333
star
9

vim-quickui

The missing UI extensions for Vim 9 (and NeoVim) !! 😎
Vim Script
1,094
star
10

asynctasks.vim

🚀 Modern Task System for Project Building, Testing and Deploying !!
Vim Script
910
star
11

vim-init

轻量级 Vim 配置框架,全中文注释
Vim Script
907
star
12

emake

你见过的最简单的 GCC/CLANG 项目构建工具,定义式构建,比命令式更简单
Python
802
star
13

PyStand

🚀 Python Standalone Deploy Environment !!
C++
736
star
14

FastMemcpy

Speed-up over 50% in average vs traditional memcpy in gcc 4.9 or vc2012
C
585
star
15

preserve-iso

绝版软件保护工程
580
star
16

avlmini

AVL implementation which is as fast/compact as linux's rbtree
C
347
star
17

quickmenu.vim

A nice customizable popup menu for vim
Vim Script
275
star
18

vim-auto-popmenu

😎 Display the Completion Menu Automantically (next AutoComplPop) !!
Vim Script
271
star
19

gutentags_plus

The right way to use gtags with gutentags
Vim Script
266
star
20

vim-terminal-help

Small changes make vim/nvim's internal terminal great again !!
Vim Script
243
star
21

translator

命令行聚合翻译工具,支持谷歌,必应,有道,百度,词霸,360
Python
227
star
22

ECDICT-ultimate

Ultimate ECDICT Database
219
star
23

GONGLUE

单机游戏攻略秘籍(1580+ 篇)
Python
180
star
24

vim-preview

The missing preview window for vim
Vim Script
167
star
25

pixellib

High Quality 2D Graphics Library
C
157
star
26

KanaQuiz

Hiragana/Katakana Speed Reading Quiz in Command Line !! 😎
Python
147
star
27

images

Static Page
C++
144
star
28

BasicBitmap

Simple and high-performance and platform independent Bitmap class (34% faster than GDI/GDI+, 40% faster than DDraw)
C++
131
star
29

AsyncNet

AsyncNet
C
117
star
30

gobang

Gobang game with artificial intelligence in 900 Lines !!
Python
115
star
31

vim-rt-format

😎 Prettify Current Line on Enter !!
Vim Script
113
star
32

vim-keysound

🍷 Play typewriter sound in Vim when you are typing a letter
Vim Script
112
star
33

Intel2GAS

Convert MSVC Style Inline Assembly to GCC Style Inline Assembly
Python
103
star
34

CloudClip

Your own clipboard in the cloud, copy and paste text with gist between systems !!
Python
79
star
35

googauth

The Python Command-line Reimplementaion of Google Authenticator
Python
74
star
36

LIBLR

Parser Generator for LR(1) and LALR
Python
68
star
37

markpress

Write WordPress in Markdown in Your Favorite Text Editor !! 😎 😎
Python
67
star
38

vim-dict

没办法,被逼的,重新整理一个词典补全的数据库
Vim Script
56
star
39

terminal

Open Terminal Window to execute command in Windows / Cygwin / Ubuntu / OS X
Python
51
star
40

LeaderF-snippet

Intuitive Way to Use Snippet
Vim Script
46
star
41

nanolib

Cross-Platform Networking Library
C
44
star
42

vim-gpt-commit

🚀 Generate git commit message using ChatGPT in Vim (and NeoVim) !!
Python
43
star
43

czmod

🚀 Native Module Written in C to Boost z.lua !!
C
42
star
44

collection

没地方放的代码,懒得开新项目了,放这里吧。
Python
40
star
45

atom-shell-commands

Execute user defined shell commands (looking for new maintainers)
JavaScript
36
star
46

vim-navigator

🚀 Navigate Your Commands Easily !!
Vim Script
32
star
47

lemma.en

English Lemma Database - Compiled by Referencing British National Corpus
29
star
48

ml

Machine Learning From Scratch
C
28
star
49

memslab

Slab Memory Allocator in Application Layer
C
28
star
50

asyncrun.extra

Extra runners for asyncrun to run your command in Tmux/Gnome-terminal panel, xterm, Floaterm and more.
Vim Script
27
star
51

vim-color-patch

🌈 Load colorscheme patch script automatically !!
Vim Script
25
star
52

zvi

🚀 Smallest Vi-clone Text Editor for Windows CLI and SSH session (only 62KB) !!
23
star
53

vim-color-export

🌈 A tool to backport NeoVim colorschemes to Vim !!
Vim Script
20
star
54

QuickNet

UDP Networking Library
C
19
star
55

asmpure

Asmpure is a library written in C for compiling assembly code at run-time
C
16
star
56

docker

Docker Images
Python
16
star
57

VmBasic

基于虚拟机的仿 QuickBasic 语言
C++
15
star
58

vim-cppman

Read Cppman/Man pages right inside your vim.
Vim Script
15
star
59

language

Language Collection
Python
12
star
60

tcz_cd

Autojump for Total Commander !!
Python
11
star
61

LanguageMark

Native Language Benchmark in Numerous Algorithms
C
9
star
62

abandonware

Abandonware Collection
9
star
63

rogue-clone

A fork of rogue-clone with bug fixes and improvements.
C
8
star
64

vim-proposal

Collection of Proposals for Vim
TypeScript
7
star
65

gosub

Golang Sub-routines for Network Development
Go
7
star
66

winxp-editors

🍷 Text Editors Preservation Project for Windows XP+
Batchfile
7
star
67

cannon

Cross Platform Network Framework
C
6
star
68

shell-scripts

常用的命令行脚本合集,让你每天的命令行生活更加高效
Shell
6
star
69

crtzero

Zero Dependent on CRT (libc)
C
6
star
70

pyp2p

Python P2P Framework
Python
6
star
71

SimdVector

Cross Platform SIMD Vector Math In A Single Header File (SimdVector.h)
C++
5
star
72

support

Win32 Command Line Tools for Development
Python
5
star
73

treasure

Single-file MIT Licensed C/C++ Portable Libraries
C
4
star
74

asyncredis

Async Redis Client for Python
Python
3
star
75

skywind

Personal Blog
HTML
3
star
76

directx9-samples

samples
C++
3
star
77

gfx

Just Another Toy yet !!
C++
3
star
78

script

Script I am using
Python
3
star
79

colors-from-neovim.vim

🌈 Backported NeoVim Colors for Vim
Vim Script
3
star
80

ones

One single file MIT licensed C/C++ Libraries
2
star
81

asclib

Basic Java Network Lib
Java
2
star
82

transmod

Automatically exported from code.google.com/p/transmod
C
2
star
83

toys

My PyQt Desktop Toys
Python
2
star
84

rust

Rust Learning Repository
1
star
85

vile

Vile the vi-clone text editor
C
1
star
86

xvi

A portable multi-file text editor and the smallest full-function vi clone
C
1
star
87

emacs

Personal Emacs Profile
Emacs Lisp
1
star
88

cmake-scratch

Cmake Templates
CMake
1
star