All Projects → aliev → vim

aliev / vim

Licence: other
📝 minimalistic vimrc based on KISS principle @vim

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to vim

Vimrc
📝 Vim Configuration for nerds with vim-plug
Stars: ✭ 33 (-28.26%)
Mutual labels:  vimrc, neovim, vim-plugin, vim-configuration
Vinux
Swiss Army Knife,Dark power vim config
Stars: ✭ 198 (+330.43%)
Mutual labels:  vimrc, vim-plugin, vim-configuration
Vim Bootstrap
Vim Bootstrap is a generator that provides a simple method of generating a configuration for vim / neovim.
Stars: ✭ 1,870 (+3965.22%)
Mutual labels:  vimrc, neovim, vim-configuration
neovim
🌟 Cool & Modularized vim configurations to work like an IDE
Stars: ✭ 17 (-63.04%)
Mutual labels:  vimrc, neovim, vim-configuration
nvimrc
vimrc for neovim written in lua
Stars: ✭ 99 (+115.22%)
Mutual labels:  vimrc, neovim, vim-configuration
VimConfig
Configuration files for Vi-IMproved.
Stars: ✭ 23 (-50%)
Mutual labels:  vimrc, vim-plugin, vim-configuration
Space Vim
🍀 Lean & mean spacemacs-ish Vim distribution
Stars: ✭ 2,785 (+5954.35%)
Mutual labels:  vimrc, neovim, vim-configuration
Spacevim
A community-driven modular vim/neovim distribution - The ultimate vimrc
Stars: ✭ 17,558 (+38069.57%)
Mutual labels:  vimrc, neovim, vim-configuration
Vim Monokai Tasty
VIM Colour scheme
Stars: ✭ 279 (+506.52%)
Mutual labels:  vimrc, neovim, vim-plugin
Learn Vim
无废话极简版Vim学习笔记!文章按主题分拆为多个章节,并尽量控制每节的信息量;通过文字色彩和字体,将命令、快捷键突出显示;在每节结尾,提供一个命令列表,以便回顾文中介绍的重要命令。如果这些文章能对喜欢Vim的朋友有所益处,我将不胜荣幸。
Stars: ✭ 83 (+80.43%)
Mutual labels:  vimrc, vim-plugin, vim-configuration
nan vimrc
A Vim configuration for SSH client to edit on a remote Linux host.
Stars: ✭ 15 (-67.39%)
Mutual labels:  vimrc, vim-plugin, vim-configuration
Nvcode
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 6,714 (+14495.65%)
Mutual labels:  vimrc, neovim
Alacritty Colorscheme
Change colorscheme of alacritty with ease.
Stars: ✭ 184 (+300%)
Mutual labels:  vimrc, neovim
Vim Better Default
🎨 Simplify your .vimrc and make the default vim better
Stars: ✭ 138 (+200%)
Mutual labels:  vimrc, vim-plugin
Init.nvim
An Opinionated Neovim Config for the Minimalists
Stars: ✭ 194 (+321.74%)
Mutual labels:  vimrc, neovim
Vim Mix Format
Vim integration for the Elixir formatter.
Stars: ✭ 196 (+326.09%)
Mutual labels:  vimrc, neovim
vimrc
A shell script to deploy my vim configuration
Stars: ✭ 19 (-58.7%)
Mutual labels:  vimrc, vim-configuration
Vime
vime, an easy and structural config for (neo)vim users
Stars: ✭ 136 (+195.65%)
Mutual labels:  vimrc, neovim
Vimrc Config
re-vim: sensible vim configuration
Stars: ✭ 212 (+360.87%)
Mutual labels:  vimrc, vim-configuration
nvim
There are many neovim configurations, but this one is mine...
Stars: ✭ 41 (-10.87%)
Mutual labels:  vimrc, vim-configuration

Vimrc

Vimrc already has all the necessary vim settings that should be by default:

  • Netrw configured
  • Some ideas was taken from vim-sensible
  • Persistent undo / history is enabled, and directory was configured to tmp file system
  • Tmux integration was added
  • Mouse is enabled by default
  • Hidden characters like tabs and trailing white spaces will shown by default
  • Using ag instead of grep (if ag is installed)

...and more more features

Installation

Just add these lines in ~/.vimrc

" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')

if empty(glob('~/.vim/autoload/plug.vim'))
  silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
    \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif

Plug 'aliev/vim'

" Initialize plugin system
call plug#end()
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].