All Projects → qw8880000 → vim_config

qw8880000 / vim_config

Licence: other
🔰 好好编程的vim配置

Programming Languages

Vim Script
2826 projects

Labels

Projects that are alternatives of or similar to vim config

dotfiles
Dotfiles of Coelacanthus
Stars: ✭ 17 (+0%)
Mutual labels:  vimrc
dotfiles
dotfiles
Stars: ✭ 13 (-23.53%)
Mutual labels:  vimrc
dot
Personal and professional dotfiles to setup my personal workspace on any Debian/Ubuntu system. Also available as rwxrob/workspace container.
Stars: ✭ 152 (+794.12%)
Mutual labels:  vimrc
nyoom.nvim
Blazing fast, configurable, minimal and lispy neovim config written in Fennel and Rust. Base config for users to extend and add upon, leading to a more unique editing experience. (🚀)
Stars: ✭ 304 (+1688.24%)
Mutual labels:  vimrc
nan vimrc
A Vim configuration for SSH client to edit on a remote Linux host.
Stars: ✭ 15 (-11.76%)
Mutual labels:  vimrc
dotfiles
❤ My ~/.dotfiles for fish/vim/tmux/git/alacritty.
Stars: ✭ 44 (+158.82%)
Mutual labels:  vimrc
lvim
My config for LunarVim
Stars: ✭ 71 (+317.65%)
Mutual labels:  vimrc
dotfiles
My personal quirks quantified in text form
Stars: ✭ 68 (+300%)
Mutual labels:  vimrc
dotfiles
🍀 Vim/Neovim + Tmux + Zsh + Alacritty = Build your own fantastic development environment
Stars: ✭ 65 (+282.35%)
Mutual labels:  vimrc
dotfiles
💎 My vim/neovim, fish, git, and tmux configuration files
Stars: ✭ 49 (+188.24%)
Mutual labels:  vimrc
miv
Vim plugin manager written in Haskell
Stars: ✭ 63 (+270.59%)
Mutual labels:  vimrc
dotfiles
My dotfiles
Stars: ✭ 23 (+35.29%)
Mutual labels:  vimrc
config files
My config files
Stars: ✭ 17 (+0%)
Mutual labels:  vimrc
VimKO
⚭ Advanced Neovim configuration for ruby/python/ops/react development ⚭
Stars: ✭ 52 (+205.88%)
Mutual labels:  vimrc
LunarVim
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 9,296 (+54582.35%)
Mutual labels:  vimrc
Dot-It-Up
A collection of dotfile scripts, plugins, and clever hacks so that you can become the master of your own OS! 🚀
Stars: ✭ 254 (+1394.12%)
Mutual labels:  vimrc
dotfiles
These dotfiles could be your life.
Stars: ✭ 42 (+147.06%)
Mutual labels:  vimrc
dotfiles
💻 My dotfiles: .vimrc, .gitconfig, .bash_profile, etc
Stars: ✭ 27 (+58.82%)
Mutual labels:  vimrc
rc.d
🛠 My rc files and other configs. Includes: Bash, Zsh, Vim, Tmux, Git, Terminal (macOS), VS Code
Stars: ✭ 32 (+88.24%)
Mutual labels:  vimrc
Dev-Setup
Automation scripts for setting up a basic development environment.
Stars: ✭ 19 (+11.76%)
Mutual labels:  vimrc

适用范围

linux 下的vim 与 windows 下的gvim 通用。适合如下开发:

  • c/c++
  • html/css/js
  • markdown

截图

screenshot for molokai

主题:molokai

安装

注意,所有的操作之前需要先安装git

对于linux

  1. git clone https://github.com/qw8880000/vim_config.git ~/vim_config
  2. 创建符号链接 ln -s ~/vim_config/_vimrc ~/.vimrc
  3. 创建目录 mkdir ~/.vim
  4. 安装Vundle git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
  5. 打开vim,输入 :BundleInstall 来安装其他插件

然后安装 ctags 和 cscope

  1. sudo apt-get install ctags
  2. sudo apt-get install cscope

对于windows (gvim)

  1. 下载gvim并安装
  2. 复制我的配置文件_vimrc_gvimrc 到正确的位置,如下图 image
  3. 在vimfiles 文件夹下新建文件夹 bundle
  4. 切换目录到vimfiles/bundle,执行安装Vundle的命令 git clone https://github.com/gmarik/vundle.git
  5. 打开vim,输入 :BundleInstall 来安装其他插件

插件列表

plugin
gmarik/vundle
junegunn/vim-easy-align
Shougo/neocomplcache.vim
OmniCppComplete
Shougo/neosnippet.vim
Shougo/context_filetype.vim
qw8880000/neosnippet-snippets
bufexplorer.zip
scrooloose/nerdtree
majutsushi/tagbar
qw8880000/ccvext.vim
ctrlpvim/ctrlp.vim
Lokaltog/vim-powerline
scrooloose/syntastic
easymotion/vim-easymotion
terryma/vim-multiple-cursors
tomasr/molokai
tpope/vim-fugitive
mattn/emmet-vim
pangloss/vim-javascript
maksimr/vim-jsbeautify
leshill/vim-json
heavenshell/vim-jsdoc
gko/vim-coloresque
qw8880000/DoxygenToolkit.vim
justinmk/vim-syntax-extra
qw8880000/c.vim
cpp.vim
scrooloose/nerdcommenter
TxtBrowser
plasticboy/vim-markdown
qw8880000/vim-tab

快捷键

  • 显示目录树 F2 image

  • 显示本文件的代码结构 F4 image

  • 在打开过的文件之间切换 ,be image

  • 切换到右边的窗口 ctrl + l, 切换到左边的窗口 ctrl + h image

  • 在目录树中定位当前文件 ,nf image

  • 生成 doxygen author 注释 ,da image

  • 生成doxygen函数注释 ,dx image

  • 生成注释(每行都生成注释) ,ci. 取消注释 ,cu. image

  • 生成注释(整块注释) ,cm. 取消注释 ,cu. image

  • 在行尾生成注释 ,cA image

  • /**/// 之间切换 ,ca image

  • 其他快捷键可查看_vimrc

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].