Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dtinth/.vimrc
My VIM settings.
https://github.com/dtinth/.vimrc
vim
Last synced: about 2 months ago
JSON representation
My VIM settings.
- Host: GitHub
- URL: https://github.com/dtinth/.vimrc
- Owner: dtinth
- Created: 2012-06-10T14:51:34.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-11-22T16:38:51.000Z (about 8 years ago)
- Last Synced: 2024-05-02T06:06:27.584Z (9 months ago)
- Topics: vim
- Language: VimL
- Homepage:
- Size: 33.2 KB
- Stars: 15
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains my rc script for VIM.
Setup
-----```bash
# install vundle and clone the repository
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
git clone https://github.com/dtinth/.vimrc.git ~/vimrc# install plugins
vim +'set nocompatible' \
+'filetype off' \
+'set rtp+=~/.vim/bundle/Vundle.vim' \
+'call vundle#begin()' \
+'source ~/vimrc/vundles.vim' \
+'call vundle#end()' \
+'PluginInstall' \
+'qall'# create required directories
mkdir ~/.vimtmp ~/.vimbackup# install!
echo 'source ~/vimrc/boot.vim' >> ~/.vimrc
```Repository Contents
-------------------
boot.vim
Convenient file for quick setup...
main.vim
My main .vimrc file.
Includes the other files (except vundles.vim).
Contains the settings that don't deserve its own file.
vundles.vim
My Vundle settings.
disable_arrow_keys.vim
Disables arrow keys, forcing you to use hjkl.
keys.vim
My key mappings.
tab_autocomplete.vim
Maps the tab key to trigger autocompletion menu.
file_types.vim
Specific settings for file types.