All Projects → AndrewRadev → Vimfiles

AndrewRadev / Vimfiles

Licence: mit
My .vim folder

Projects that are alternatives of or similar to Vimfiles

Zaml
The Final Form of configuration files
Stars: ✭ 45 (-31.82%)
Mutual labels:  configuration
Dots
Dotfiles for Arch Linux and OS X (branched)
Stars: ✭ 54 (-18.18%)
Mutual labels:  configuration
Aspnetcore.services
Examples for ASP.NET Core webservices
Stars: ✭ 59 (-10.61%)
Mutual labels:  configuration
Node No Config
Config and resource loader
Stars: ✭ 45 (-31.82%)
Mutual labels:  configuration
Totem
Crystal configuration with spirit. Load and parse configuration in JSON, YAML, dotenv formats.
Stars: ✭ 52 (-21.21%)
Mutual labels:  configuration
.emacs.d
My emacs config
Stars: ✭ 56 (-15.15%)
Mutual labels:  configuration
Rose
🌹 Rose is a toolkit for writing, editing and running application configurations.
Stars: ✭ 41 (-37.88%)
Mutual labels:  configuration
Pureconfig
A boilerplate-free library for loading configuration files
Stars: ✭ 1,114 (+1587.88%)
Mutual labels:  configuration
Config
Yii2 application runtime configuration support
Stars: ✭ 54 (-18.18%)
Mutual labels:  configuration
Dotfiles
🖥️ Automated Configuration, Preferences and Software Installation for macOS
Stars: ✭ 1,103 (+1571.21%)
Mutual labels:  configuration
Smokinglinuxeveryday
Smoking Linux Every Day!
Stars: ✭ 47 (-28.79%)
Mutual labels:  configuration
Confucius
A lightweight Java configuration library
Stars: ✭ 51 (-22.73%)
Mutual labels:  configuration
Arcticfox Config
Configuration Tool for Vape Battery Mods with Arcticfox Firmware. ☁️ 🔧 Works on MacOS and Linux.
Stars: ✭ 58 (-12.12%)
Mutual labels:  configuration
Laravel Settings
Simple Settings package for a laravel application
Stars: ✭ 45 (-31.82%)
Mutual labels:  configuration
Pioneer Console Boilerplate
Dependency injection, logging and configuration in a .NET Core console application.
Stars: ✭ 60 (-9.09%)
Mutual labels:  configuration
Env
My setup, partially
Stars: ✭ 41 (-37.88%)
Mutual labels:  configuration
Mac config
Scripted installation and configuration of Mac OS X apps and preferences
Stars: ✭ 55 (-16.67%)
Mutual labels:  configuration
Umatrix Rules Domain
uMatrix ruleset unbreaks all Alexa 100 and more at domain level
Stars: ✭ 66 (+0%)
Mutual labels:  configuration
Ins sandstorm
[INS] Config setting for our sandstorm server
Stars: ✭ 61 (-7.58%)
Mutual labels:  configuration
Hiyapyco
HiYaPyCo - A Hierarchical Yaml Python Config
Stars: ✭ 58 (-12.12%)
Mutual labels:  configuration

This project is my vim setup. It's intended to work on a Linux box with a vim compiled with +python, though it should load just fine even otherwise, only with less features.

To try it out, backup your .vimrc and your .vim directory and checkout this repository as ~/.vim. Afterwards, create a symbolic link from ~/.vim/.vimrc to ~/.vimrc and checkout all submodules:

git clone git://github.com/AndrewRadev/Vimfiles.git ~/.vim
ln -s ~/.vim/.vimrc ~/.vimrc
cd ~/.vim
git submodule init
git submodule update

Occasionally, I remap built-in mappings, so use with caution, and preferably read "startup/mappings.vim" beforehand to avoid nasty surprises.

Alternatively, you can read and selectively pick stuff for your own configuration, which I highly recommend. A short guide to where you can find most of my customizations follows below. If you're interested in vim plugins I've published, you can find a list on my vim.org profile page.

Startup

The "startup" directory is basically my .vimrc, except separated into mappings, settings and so on. The borders between a few things are blurry, though. The reason they're not in plugin is because it's necessary to either load them very early or load them in a specific order. Or, they just haven't made sense to me as "plugins".

Personal

The "miniplugins" directory contains small scripts that I don't consider good plugin material, but are useful anyway.

WIP

The "wip" directory contains stuff that I'm currently working on. These are probably incomplete experiments that I can't build plugins from just yet. Note that I have a rather loose definition of "currently".

Projects

The "projects" directory holds "project" files. I use this in combination with the proj plugin to load some project-specific settings depending on what I'm working on right now.

Nerdtree plugins

The "nerdtree_plugin" directory is not the stock one that comes with the NERDTree plugin. It contains a few of my own scripts, although I've moved most of the interesting ones to a separate plugin called Andrew's NERDTree.

Filetype-specific stuff

A lot of interesting things can be found in the "ftplugin" directory. I occasionally build useful stuff for filetypes I use often. These are probably not very generic or redistributable, which is why I tend to put them there.

Party tricks

  • You can view the contents of various kinds of binary files directly with Vim, thanks to Tim Pope's afterimage plugin and the JavaDecompiler plugin. This includes:

    • PNG and GIF images. For best results, open in a GUI instance of Vim. Requires imagemagick.
    • Word documents. Requires antiword.
    • PDFs. Requires pdftk.
    • Java .class files. Requires jad.
  • You can start an ASCII nyan cat in a new tab with the :Nyancat and :Nyancat2 commands, courtesy of the nyancat plugin

  • You can turn any text into ASCII art by marking it in visual mode and executing :Figlet, implemented by the figlet plugin. Requires the figlet command.

Other

  • The file "autoload/lib.vim" contains (mostly) general-purpose functions I've felt could be useful in various places.
  • The file "colors/andrew.vim" is my personal colorscheme, which is a modified elflord.
  • The "after" directory may contain some interesting things that had to be placed there for late loading.
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].