add vimrc and zshrc

This commit is contained in:
Jörg Thalheim 2014-08-23 16:00:32 +02:00
parent 46c8dfe23b
commit bfe0c63532
5 changed files with 110 additions and 8 deletions

View File

@ -11,6 +11,8 @@
- strace - strace
- cacert-dot-org - cacert-dot-org
- the_silver_searcher - the_silver_searcher
- zsh
- git
- name: /etc/hosts - name: /etc/hosts
template: src=hosts.j2 dest=/etc/hosts mode=0644 backup=yes template: src=hosts.j2 dest=/etc/hosts mode=0644 backup=yes
- locale_gen: name=de_DE.UTF-8 state=present - locale_gen: name=de_DE.UTF-8 state=present

View File

@ -1,5 +1,5 @@
# #
# THIS FILE IS MANAGED BY ANSIBLE, DO NOT EDIT MANUALLY # {{ ansible_managed }}
# #
# /etc/pacman.conf # /etc/pacman.conf
# #

View File

@ -0,0 +1,59 @@
" {{ ansible_managed }}
set nocompatible " be iMproved
filetype off " required!
let mapleader="," " change the leader to be a comma vs slash
let iCanHazVundle=1
let vundle_readme=expand('~/.vim/bundle/Vundle.vim/README.md')
if !filereadable(vundle_readme)
echo "Installing Vundle.."
echo ""
silent !mkdir -p ~/.vim/bundle
silent !git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
let iCanHazVundle=0
endif
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'tpope/vim-rails'
Plugin 'scrooloose/nerdtree'
Plugin 'slim-template/vim-slim'
Plugin 'scrooloose/syntastic'
" not compatible with vim on servers
" Bundle 'Valloric/YouCompleteMe'
Plugin 'airblade/vim-gitgutter'
Plugin 'bronson/vim-trailing-whitespace'
call vundle#end()
if iCanHazVundle == 0
echo "Installing Bundles, please ignore key map error messages"
echo ""
:BundleInstall
endif
syntax on
filetype plugin indent on
set backupdir=~/.vim.backupdir
set backup " keep a backup file
set autoindent " copy indent from current line
set undofile " persistent undo
set undoreload=10000
set undodir=~/.vimundo
" Softtabs, 2 spaces
set tabstop=2
set shiftwidth=2
set expandtab
command! -bar SudoWrite :
\ setlocal nomodified |
\ exe (has('gui_running') ? '' : 'silent') 'write !sudo tee % >/dev/null' |
\ let &modified = v:shell_error
cmap w!! SudoWrite
" Local config
if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif

View File

@ -0,0 +1,41 @@
# {{ ansible_managed }}
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
# ZSH_THEME="steeef"
ZSH_THEME="robbyrussell"
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable bi-weekly auto-update checks
DISABLE_AUTO_UPDATE="true"
# Uncomment to change how many often would you like to wait before auto-updates occur? (in days)
# export UPDATE_ZSH_DAYS=13
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git common-aliases dircycle gem gitfast last-working-dir systemd pip python ruby svn urltools)
[ -s ~/.zshrc.local ] && source ~/.zshrc.local
source $ZSH/oh-my-zsh.sh

View File

@ -8,11 +8,11 @@
service: name={{ item }} state=stopped enabled=no service: name={{ item }} state=stopped enabled=no
with_items: masked_services with_items: masked_services
- name: install essential packages - user: name=root shell=/usr/bin/zsh
pacman: name={{ item }} state=present - name: Clone oh-my-zsh repo
with_items: git: repo=https://github.com/robbyrussell/oh-my-zsh.git dest=/root/.oh-my-zsh
- htop - name: deploy .zshrc
- strace copy: src=zshrc dest=/root/.zshrc
- cacert-dot-org
- the_silver_searcher
- mount: name=/run/systemd/journal/ src=/mnt/journal fstype=none opts=bind,ro state=present - mount: name=/run/systemd/journal/ src=/mnt/journal fstype=none opts=bind,ro state=present
- name: deploy .vimrc
copy: src=vimrc dest=/root/.vimrc