• Stars
    star
    4,895
  • Rank 8,576 (Top 0.2 %)
  • Language
    Vim Script
  • Created over 11 years ago
  • Updated about 1 year ago

Reviews

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

Repository Details

vim配置

k-vim

VERSION: 9.2

LAST_UPDATE_TIME: 2017-07-29

本次更新: 小版本更新, 支持vim8异步语法检查

详细 更新日志

目标

Just a Better Vim Config. Keep it Simple.

PS: 服务器端无插件k-vim简化版本(curl直接设置vimrc即可)vim-for-server / vscode-vim配置(尽量一致的键位) k-vim-vscode

PPS: 一份tmux配置 k-tmux



截图

solarized主题

solarized

molokai主题

molokai



安装步骤

1. clone 到本地

git clone https://github.com/wklken/k-vim.git

2. 安装依赖包

2.1 系统依赖 # ctags, ag(the_silver_searcher)
# ubuntu
sudo apt-get install ctags
sudo apt-get install build-essential cmake python-dev  #编译YCM自动补全插件依赖
sudo apt-get install silversearcher-ag

# centos
sudo yum install python-devel.x86_64
sudo yum groupinstall 'Development Tools'
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo yum install the_silver_searcher
sudo yum install cmake

# mac
brew install ctags
brew install the_silver_searcher
2.2 使用Python
sudo pip install flake8 yapf
2.3 如果使用Javascript(不需要的跳过)
# 安装jshint和jslint,用于javascript语法检查
# 需要nodejs支持,各个系统安装见文档 https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager

# ubuntu
sudo apt-get install nodejs npm
sudo npm install -g jslint
sudo npm install jshint -g
sudo npm install -g eslint eslint-plugin-standard eslint-plugin-promise eslint-config-standard eslint-plugin-import eslint-plugin-node eslint-plugin-html babel-eslint

# mac
brew install node
npm install jshint -g
npm install jslint -g
npm install -g eslint eslint-plugin-standard eslint-plugin-promise eslint-config-standard eslint-plugin-import eslint-plugin-node eslint-plugin-html babel-eslint

3. 安装

进入目录, 执行安装
# 注意原先装过的童鞋, 重装时,不要到~/.vim下执行(这是软连接指向k-vim真是目录),必须到k-vim原生目录执行
# 会进入安装插件的列表,一安装是从github clone的,完全取决于网速, 之后会自动编译 YCM, 编译失败的话需要手动编译, 有问题见YCM文档
# 如果发现有插件安装失败 可以进入vim, 执行`:PlugInstall'

cd k-vim/
sh -x install.sh


移除安装

cd ~ && rm -rf .vim .vimrc .vimrc.bundles && cd -


常见问题

详见 wiki 以及 issues



插件

选择安装插件集合

编辑vimrc.bundles中

" more options: ['json', 'nginx', 'golang', 'ruby', 'less', 'json', ]
let g:bundle_groups=['python', 'javascript', 'markdown', 'html', 'css', 'tmux', 'beta']

选定集合后, 使用插件管理工具进行安装/更新

插件管理

使用 vim-plug 管理插件

vim-plug 常见问题: vim-plug faq / YCM timeoutYCM 国人在国内做的镜像

管理插件的命令

:PlugInstall     install                      安装插件
:PlugUpdate      install or update            更新插件
:PlugClean       remove plugin not in list    删除本地无用插件
:PlugUpgrade     Upgrade vim-plug itself      升级本身
:PlugStatus      Check the status of plugins  查看插件状态

插件列表

说明/演示/自定义快捷键等, 待处理



自定义快捷键

注意, 以下 ',' 代表<leader>
1. 可以自己修改vimrc中配置,决定是否开启鼠标

set mouse-=a           " 鼠标暂不启用, 键盘党....
set mouse=a            " 开启鼠标

2. 退出vim后,内容显示在终端屏幕, 可以用于查看和复制, 如果不需要可以关掉
    好处:误删什么的,如果以前屏幕打开,可以找回....惨痛的经历

set t_ti= t_te=

3. 可以自己修改vimrc决定是否使用方向键进行上下左右移动,默认关闭,强迫自己用 hjkl,可以注解
hjkl  上下左右

map <Left> <Nop>
map <Right> <Nop>
map <Up> <Nop>
map <Down> <Nop>

4. 上排F功能键

F1 废弃这个键,防止调出系统帮助
F2 set nu/nonu,行号开关,用于鼠标复制代码用
F3 set list/nolist,显示可打印字符开关
F4 set wrap/nowrap,换行开关
F5 set paste/nopaste,粘贴模式paste_mode开关,用于有格式的代码粘贴
F6 syntax on/off,语法开关,关闭语法可以加快大文件的展示

F9 tagbar
F10 运行当前文件(quickrun)

5. 分屏移动

ctrl + j/k/h/l   进行上下左右窗口跳转,不需要ctrl+w+jkhl

6. 搜索
<space> 空格,进入搜索状态
/       同上
,/      去除匹配高亮

(交换了#/* 号键功能, 更符合直觉, 其实是离左手更近)
#       正向查找光标下的词
*       反向查找光标下的词

优化搜索保证结果在屏幕中间

7. tab操作
ctrl+t 新建一个tab

(hjkl)
,th    切第1个tab
,tl    切最后一个tab
,tj    下一个tab
,tk    前一个tab

,tn    下一个tab(next)
,tp    前一个tab(previous)

,td    关闭tab
,te    tabedit
,tm    tabm

,1     切第1个tab
,2     切第2个tab
...
,9     切第9个tab
,0     切最后一个tab

,tt 最近使用两个tab之间切换
(可修改配置位 ctrl+o,  但是ctrl+o/i为系统光标相关快捷键, 故不采用)

8. buffer操作(不建议, 建议使用ctrlspace插件来操作)
[b    前一个buffer
]b    后一个buffer
<-    前一个buffer
->    后一个buffer


9. 按键修改
Y         =y$   复制到行尾
U         =Ctrl-r
,sa       select all,全选
gv        选中并高亮最后一次插入的内容
,v        选中段落
kj        代替<Esc>,不用到角落去按esc了

,q     :q,退出vim
,w     :w, 保存当前文件

ctrl+n    相对/绝对行号切换
<enter>   normal模式下回车选中当前项

更多细节优化:
    1. j/k 对于换行展示移动更友好
    2. HL 修改成 ^$, 更方便在同行移动
    3. ; 修改成 : ,一键进入命令行模式,不需要按shift
    4. 命令行模式 ctrl+a/e 到开始结尾
    5. <和> 代码缩进后自动再次选中, 方便连续多次缩进, esc退出
    6. 对py文件,保存自动去行尾空白,打开自动加行首代码
    7. 'w!!'强制保存, 即使readonly
    8. 去掉错误输入提示
    9. 交换\`和', '能跳转到准确行列位置
    10. python/ruby 等, 保存时自动去行尾空白
    11. 统一所有分屏打开的操作位v/s[nerdtree/ctrlspace] (特殊ctrlp ctrl+v/x)
    12. ',zz' 代码折叠toggle
    13. python使用"""添加docstring会自动补全三引号
    14. Python使用#进行注释时, 自动缩进


UPDATE_LOG

version 9.2

插件部分:
1. 增加 w0rp/ale 异步语法检查插件, 用户vim版本为8.0时自动启用. 非8时, 启用默认scrooloose/syntastic, 两套插件快捷键一致
2. 切换使用flake8作为python风格检查(pip install pep8)
3. 启用yapf作为python代码格式化(pip install yapf)
4. 启用eslint作为javascript代码检查
5. YCM 设置回车选中不再弹补全框

细节:
1. 新增快捷键 gv 选中并高亮最后一次插入的内容

Contributors

thx a lot. 可以给我提pull request:)

查看详情 git-contributors

Inspire

  1. vimrc文件布局vimrc+vimrc.bundles配置方式参考 maximum-awesome

  2. install.sh 参考spf13-vimbootstrap.sh spf13-vim

  3. 插件管理使用Vim-plug

  4. 自动补全 YCM

  5. 插件挑选 VimAwesome

Resources

链接

Donation

如果你认为对你有所帮助, You can Buy me a coffee:)

donation

Stargazers over time

Stargazers over time



The End!

wklken (凌岳/pythoner/vim党预备党员)

Github: https://github.com/wklken

Blog: http://www.wklken.me

2013-06-11 于深圳

More Repositories

1

stackoverflow-py-top-qa

stackoverflow上Python相关回答整理翻译
855
star
2

vim-for-server

.vimrc, simple configures for server, without plugins.
Vim Script
603
star
3

py-patterns

设计模式的python实现
Python
408
star
4

suggestion

搜索输入框-下拉提示(推荐), 提示词根据权重排序.基于double-array-trie的darts, golang语言实现.
JavaScript
180
star
5

config

My linux config file. .bash_profile .alias bin .vimrc etc.
Shell
170
star
6

k-tmux

tmux.conf
91
star
7

bash-utils

utils for shell
Shell
80
star
8

pytools

Some powerful scripts and tools wrote by Python! Impressive
Python
67
star
9

linux-notes

Some quick intro notebook of linux for Chinese Programmers
58
star
10

Python-2.7.8

Python源码注释版本
Python
47
star
11

k-vim-vscode

vscode settings with vim key-bindings just like k-vim(https://github.com/wklken/k-vim)! Happy Coding!
41
star
12

pyutils

A lot of useful functions/modules.
Python
29
star
13

naming

Naming is the most difficult part of programming, this repo may save your time.
Python
26
star
14

cmdcheatsheet

A quick cheatsheet tool in shell, you can use keyword to reach what you edit/need!
Python
25
star
15

KeepLearning

之前学习一些东西的代码集合, 一般跟某份教程或者某本书一致. 代码+详细注释, 可执行
Python
21
star
16

fetch

A command line http test tool. Maintain the case via git and pure text
Go
17
star
17

apue.3e

apue.3e 注释版本
C
10
star
18

http_json_logger

Golang. To get json body from http api, write to json file, and do rotate daily. The log file will be used for logstash json_lines
Go
5
star
19

flask-qrcode-demo

flask + python-qrcode, a simple service demo:)
Python
4
star
20

dataformat

A tool to generate data or reformat source data to csv/xml, useful for test data
Python
4
star
21

rabbitmq-http-dispatcher

An simple consumer, dispatch messages to http server.
Python
3
star
22

echo

An server will echo the requests detail into response. For api testing / benchmark for your proxies like APIGateway/ReverseProxy/nginx/traefik.
Go
2
star
23

logging-go

A practical and high-performance go logging lib, based on logrus, with a lot of hooks
Go
2
star
24

wklken.github.io

个人博客
HTML
1
star
25

flask_dir_gen

A shell script to generate flask project dir.
Python
1
star
26

offline

Install virtualenv and supervisord to a system without internet access(offline)
Shell
1
star
27

apisix-extra-plugins

some plugins
Lua
1
star
28

apisix-go

This is an `apisix` implemented via Go
Go
1
star