Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yesnault/dotfiles
https://github.com/yesnault/dotfiles
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yesnault/dotfiles
- Owner: yesnault
- Created: 2015-02-04T23:05:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-26T21:07:35.000Z (over 9 years ago)
- Last Synced: 2024-04-30T23:52:01.568Z (7 months ago)
- Language: Shell
- Size: 215 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
```
git clone https://github.com/powerline/fonts && cd fonts && ./install.shpip install --user git+git://github.com/powerline/powerline
rm -rf ~/.vimrc*
echo "let g:spf13_bundle_groups=['general', 'neocomplete', 'programming', 'ruby', 'python', 'go', 'javascript', 'html', 'misc', 'writing' ]" > ~/.vimrc.before.local
echo "let g:spf13_use_powerline=1" >> ~/.vimrc.before.local
sh <(curl https://j.mp/spf13-vim3 -L)
echo "set nolist" >> ~/.vimrc.local
echo "let g:indent_guides_enable_on_vim_startup = 0" >> ~/.vimrc.local
```Conf Iterm2
Import Colors -> Load Preset -> SolarizedDark.itermcolors
Fonts 12pt Source Code for powerline Anti Aliased# VIM on osx
```
brew reinstall vim --with-lua --with-python --with-ruby --with-perl
```# VIM on debian
```
apt-get install libluajit-5.1mkdir opt && cd opt && git clone https://github.com/vim/vim.git
cd vim && ./configure --with-features=huge \
--enable-multibyte \
--enable-rubyinterp \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7/config \
--enable-perlinterp \
--enable-luainterp --with-luajit \
--enable-cscope --prefix=/home/yesnault/usrmake VIMRUNTIMEDIR=/home/yesnault/usr/share/vim/vim74
make install
export PATH=~/usr/bin:$PATH
vim --version | grep lua # check if it's '+lua'
```