https://github.com/gone369/dotfiles
dot files and configurations for vim,bash, and tmux
https://github.com/gone369/dotfiles
dotfiles vim vimrc
Last synced: 2 months ago
JSON representation
dot files and configurations for vim,bash, and tmux
- Host: GitHub
- URL: https://github.com/gone369/dotfiles
- Owner: gone369
- Created: 2015-07-21T00:46:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-02-03T12:28:38.000Z (over 5 years ago)
- Last Synced: 2025-03-23T08:22:30.052Z (over 1 year ago)
- Topics: dotfiles, vim, vimrc
- Language: Vim script
- Homepage:
- Size: 2.08 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My Dotfiles
===========
```bash
cd ~
git init
git remote add origin https://github.com/gone369/dotfiles.git
git pull origin master
```
## using [vim-plugged](https://github.com/junegunn/vim-plug) to maintain your vim plugins (RECOMMENDED)
open up .vimrc
```bash
vim ~/.vimrc`
```
* edit the Plug files specified in .vimrc
(note some plugins require python supported vim, [node.js](nodejs.org) installed and [powerline fonts](https://github.com/powerline/fonts))
* Execute `:PlugInstall`
## using [pathogen](https://github.com/tpope/vim-pathogen) to maintain your vim plugins
you can manually manage your bundles in .vim/bundle
or i've written a bash helper script to help organize your plugins with git submodules
### adding Plugins
```bash
cd ~/.vim/scripts
sh vim.sh add https://github.com/mhinz/vim-startify
```
you can replace `https://github.com/mhinz/vim-startify` with any github url
### updating Plugins to master branch
```bash
cd ~/.vim/scripts
sh vim.sh update
```
### removing Plugins
```bash
cd ~/.vim/scripts
sh vim.sh remove vim-startify
```
you can replace `vim-startify` with any folder name in .vim/bundle
#### You can ignore the other misc. stuffs in the dotfiles folders otherwise feel free to look around