Compare commits
2 Commits
e8427ff642
...
c8c8828ccc
Author | SHA1 | Date | |
---|---|---|---|
c8c8828ccc | |||
|
43e45f8cec |
13
README.rst
13
README.rst
@ -2,4 +2,15 @@
|
|||||||
dotfiles
|
dotfiles
|
||||||
========
|
========
|
||||||
|
|
||||||
This is a repository with my configuration files.
|
This is a repository with my configuration files.
|
||||||
|
|
||||||
|
Set Up Guide
|
||||||
|
------------
|
||||||
|
|
||||||
|
To set up your dot files, do the following:
|
||||||
|
|
||||||
|
.. code-block:: shell
|
||||||
|
|
||||||
|
git clone https://git.snyman.info/raoul/dotfiles.git
|
||||||
|
cd dotfiles
|
||||||
|
bash setup.sh
|
||||||
|
@ -29,12 +29,14 @@ Plug 'rainglow/vim'
|
|||||||
Plug 'yuezk/vim-js'
|
Plug 'yuezk/vim-js'
|
||||||
Plug 'maxmellon/vim-jsx-pretty'
|
Plug 'maxmellon/vim-jsx-pretty'
|
||||||
Plug 'freitass/todo.txt-vim'
|
Plug 'freitass/todo.txt-vim'
|
||||||
|
Plug 'hashivim/vim-terraform'
|
||||||
|
Plug 'juliosueiras/vim-terraform-completion'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
set guifont=Hack:h10
|
set guifont=Hack:h10
|
||||||
set clipboard=unnamedplus
|
set clipboard=unnamedplus
|
||||||
set noshowmode
|
set noshowmode
|
||||||
set colorcolumn=100
|
set colorcolumn=120
|
||||||
set tw=0
|
set tw=0
|
||||||
set wildignore+=*/tmp/*,*.so,*.swp,*.zip,*.pyc,*.pyo,build/*,*egg-info*,dist/*,node_modules/*,prime/*,stage/*
|
set wildignore+=*/tmp/*,*.so,*.swp,*.zip,*.pyc,*.pyo,build/*,*egg-info*,dist/*,node_modules/*,prime/*,stage/*
|
||||||
set number
|
set number
|
||||||
@ -93,6 +95,8 @@ autocmd! BufWritePost * Neomake
|
|||||||
" Deoplete
|
" Deoplete
|
||||||
let g:deoplete#enable_at_startup = 1
|
let g:deoplete#enable_at_startup = 1
|
||||||
let g:deoplete#sources#jedi#python_path = '/usr/bin/python3'
|
let g:deoplete#sources#jedi#python_path = '/usr/bin/python3'
|
||||||
|
let g:deoplete#omni_patterns = {}
|
||||||
|
let g:deoplete#omni_patterns.terraform = '[^ *\t"{=$]\w*'
|
||||||
|
|
||||||
" Ack.vim
|
" Ack.vim
|
||||||
if executable('ag')
|
if executable('ag')
|
||||||
|
28
setup.sh
Executable file → Normal file
28
setup.sh
Executable file → Normal file
@ -18,6 +18,15 @@ function check_or_install() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function install_build_tools() {
|
||||||
|
if [[ "${APT}x" == "x" ]]; then
|
||||||
|
# This is not Debian
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
echo "Installing build tools..."
|
||||||
|
check_or_install gcc build-essential
|
||||||
|
}
|
||||||
|
|
||||||
function setup_neovim() {
|
function setup_neovim() {
|
||||||
# Set up Neovim
|
# Set up Neovim
|
||||||
if [[ -d "$HOME/.config/nvim" ]]; then
|
if [[ -d "$HOME/.config/nvim" ]]; then
|
||||||
@ -29,6 +38,8 @@ function setup_neovim() {
|
|||||||
ln -s $DIR/nvim
|
ln -s $DIR/nvim
|
||||||
curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
||||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
|
nvim --headless +PlugInstall +qa
|
||||||
|
nvim +UpdateRemotePlugins +qa
|
||||||
}
|
}
|
||||||
|
|
||||||
function setup_git() {
|
function setup_git() {
|
||||||
@ -52,15 +63,18 @@ function setup_git() {
|
|||||||
|
|
||||||
function setup_zsh() {
|
function setup_zsh() {
|
||||||
# Set up ZSH
|
# Set up ZSH
|
||||||
if [[ -d "$HOME/.oh-my-zsh" ]]; then
|
if [[ -d "$HOME/.zprezto" ]]; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
echo "Setting up zsh..."
|
echo "Setting up zsh..."
|
||||||
check_or_install zsh zsh
|
check_or_install zsh zsh
|
||||||
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
|
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
|
||||||
cd $HOME/.oh-my-zsh/custom/themes
|
if [[ -f "$HOME/.zshrc" ]]; then
|
||||||
ln -s $DIR/zsh/themes/raoul.zsh-theme raoul.zsh-theme
|
mv "$HOME/.zshrc" "$HOME/.zshrc.original"
|
||||||
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="raoul"/' $HOME/.zshrc
|
fi
|
||||||
|
zsh -c 'setopt EXTENDED_GLOB; for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"; done'
|
||||||
|
cd $HOME
|
||||||
|
patch -p0 < $DIR/zsh/prezto.diff
|
||||||
}
|
}
|
||||||
|
|
||||||
function setup_topydo() {
|
function setup_topydo() {
|
||||||
@ -84,7 +98,9 @@ function setup_topydo() {
|
|||||||
# Set up a generic bin directory for scripts and tools
|
# Set up a generic bin directory for scripts and tools
|
||||||
mkdir -p $HOME/bin
|
mkdir -p $HOME/bin
|
||||||
mkdir -p $HOME/.config
|
mkdir -p $HOME/.config
|
||||||
|
install_build_tools
|
||||||
setup_neovim
|
setup_neovim
|
||||||
setup_git
|
setup_git
|
||||||
setup_zsh
|
setup_zsh
|
||||||
setup_topydo
|
# Not used anymore
|
||||||
|
# setup_topydo
|
||||||
|
102
zsh/prezto.diff
Normal file
102
zsh/prezto.diff
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
diff --git zpreztorc zpreztorc
|
||||||
|
index ae68a89..2c1e405 100644
|
||||||
|
--- zpreztorc
|
||||||
|
+++ zpreztorc
|
||||||
|
@@ -38,8 +38,11 @@ zstyle ':prezto:load' pmodule \
|
||||||
|
'spectrum' \
|
||||||
|
'utility' \
|
||||||
|
'completion' \
|
||||||
|
+ 'syntax-highlighting' \
|
||||||
|
'history-substring-search' \
|
||||||
|
- 'prompt'
|
||||||
|
+ 'autosuggestions' \
|
||||||
|
+ 'prompt' \
|
||||||
|
+ 'git'
|
||||||
|
|
||||||
|
#
|
||||||
|
# Autosuggestions
|
||||||
|
@@ -130,7 +133,7 @@ zstyle ':prezto:module:editor' key-bindings 'emacs'
|
||||||
|
# Set the prompt theme to load.
|
||||||
|
# Setting it to 'random' loads a random theme.
|
||||||
|
# Auto set to 'off' on dumb terminals.
|
||||||
|
-zstyle ':prezto:module:prompt' theme 'sorin'
|
||||||
|
+zstyle ':prezto:module:prompt' theme 'skwp'
|
||||||
|
|
||||||
|
# Set the working directory prompt display length.
|
||||||
|
# By default, it is set to 'short'. Set it to 'long' (without '~' expansion)
|
||||||
|
@@ -181,39 +184,39 @@ zstyle ':prezto:module:prompt' theme 'sorin'
|
||||||
|
|
||||||
|
# Set syntax highlighters.
|
||||||
|
# By default, only the main highlighter is enabled.
|
||||||
|
-# zstyle ':prezto:module:syntax-highlighting' highlighters \
|
||||||
|
-# 'main' \
|
||||||
|
-# 'brackets' \
|
||||||
|
-# 'pattern' \
|
||||||
|
-# 'line' \
|
||||||
|
-# 'cursor' \
|
||||||
|
-# 'root'
|
||||||
|
-#
|
||||||
|
+zstyle ':prezto:module:syntax-highlighting' highlighters \
|
||||||
|
+ 'main' \
|
||||||
|
+ 'brackets' \
|
||||||
|
+ 'pattern' \
|
||||||
|
+ 'line' \
|
||||||
|
+ 'cursor' \
|
||||||
|
+ 'root'
|
||||||
|
+
|
||||||
|
# Set syntax highlighting styles.
|
||||||
|
-# zstyle ':prezto:module:syntax-highlighting' styles \
|
||||||
|
-# 'builtin' 'bg=blue' \
|
||||||
|
-# 'command' 'bg=blue' \
|
||||||
|
-# 'function' 'bg=blue'
|
||||||
|
-#
|
||||||
|
+zstyle ':prezto:module:syntax-highlighting' styles \
|
||||||
|
+ 'builtin' 'bg=blue' \
|
||||||
|
+ 'command' 'bg=blue' \
|
||||||
|
+ 'function' 'bg=blue'
|
||||||
|
+
|
||||||
|
# Set syntax pattern styles.
|
||||||
|
-# zstyle ':prezto:module:syntax-highlighting' pattern \
|
||||||
|
-# 'rm*-rf*' 'fg=white,bold,bg=red'
|
||||||
|
+zstyle ':prezto:module:syntax-highlighting' pattern \
|
||||||
|
+ 'rm*-rf*' 'fg=white,bold,bg=red'
|
||||||
|
|
||||||
|
#
|
||||||
|
# Terminal
|
||||||
|
#
|
||||||
|
|
||||||
|
# Auto set the tab and window titles.
|
||||||
|
-# zstyle ':prezto:module:terminal' auto-title 'yes'
|
||||||
|
+zstyle ':prezto:module:terminal' auto-title 'yes'
|
||||||
|
|
||||||
|
# Set the window title format.
|
||||||
|
-# zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
|
||||||
|
+zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
|
||||||
|
|
||||||
|
# Set the tab title format.
|
||||||
|
-# zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
|
||||||
|
+zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
|
||||||
|
|
||||||
|
# Set the terminal multiplexer title format.
|
||||||
|
-# zstyle ':prezto:module:terminal:multiplexer-title' format '%s'
|
||||||
|
+zstyle ':prezto:module:terminal:multiplexer-title' format '%s'
|
||||||
|
|
||||||
|
#
|
||||||
|
# Tmux
|
||||||
|
diff --git zshrc zshrc
|
||||||
|
index 039b882..58f1b30 100644
|
||||||
|
--- zshrc
|
||||||
|
+++ zshrc
|
||||||
|
@@ -10,4 +10,11 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
||||||
|
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
-# Customize to your needs...
|
||||||
|
+# Exports
|
||||||
|
+export PATH="$HOME/bin:$PATH"
|
||||||
|
+export VISUAL=nvim
|
||||||
|
+export EDITOR="$VISUAL"
|
||||||
|
+export GIT_EDITOR=nvim
|
||||||
|
+
|
||||||
|
+# Aliases
|
||||||
|
+alias k=kubectl
|
@ -1,39 +0,0 @@
|
|||||||
# -*- sh -*- vim:set ft=sh ai et sw=4 sts=4:
|
|
||||||
# It might be bash like, but I can't have my co-workers knowing I use zsh
|
|
||||||
PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%}:%{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info)$(hg_prompt_info)%(!.#.$) '
|
|
||||||
|
|
||||||
PROMPT_PREFIX=" %{$fg[magenta]%}"
|
|
||||||
PROMPT_SUFFIX="%{$reset_color%} "
|
|
||||||
PROMPT_CLEAN=""
|
|
||||||
PROMPT_DIRTY=" %{$fg[yellow]%}✗%{$reset_color%}"
|
|
||||||
|
|
||||||
# git
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX=$PROMPT_PREFIX
|
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX=$PROMPT_SUFFIX
|
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY=$PROMPT_DIRTY
|
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN=$PROMPT_CLEAN
|
|
||||||
|
|
||||||
# hg
|
|
||||||
ZSH_THEME_HG_PROMPT_PREFIX=$PROMPT_PREFIX
|
|
||||||
ZSH_THEME_HG_PROMPT_SUFFIX=$PROMPT_SUFFIX
|
|
||||||
ZSH_THEME_HG_PROMPT_DIRTY=$PROMPT_DIRTY
|
|
||||||
ZSH_THEME_HG_PROMPT_CLEAN=$PROMPT_CLEAN
|
|
||||||
|
|
||||||
# bzr
|
|
||||||
ZSH_THEME_BZR_PROMPT_PREFIX=$PROMPT_PREFIX
|
|
||||||
ZSH_THEME_BZR_PROMPT_SUFFIX=$PROMPT_SUFFIX
|
|
||||||
ZSH_THEME_BZR_PROMPT_DIRTY=$PROMPT_DIRTY
|
|
||||||
ZSH_THEME_BZR_PROMPT_CLEAN=$PROMPT_CLEAN
|
|
||||||
|
|
||||||
function bzr_prompt_info() {
|
|
||||||
BZR_CB=`bzr nick 2> /dev/null | grep -v "ERROR" | cut -d ":" -f2 | awk -F / '{print $1}'`
|
|
||||||
if [ -n "$BZR_CB" ]; then
|
|
||||||
BZR_DIRTY=""
|
|
||||||
if [[ -n `bzr status` ]]; then
|
|
||||||
BZR_DIRTY=$ZSH_THEME_BZR_PROMPT_DIRTY
|
|
||||||
else
|
|
||||||
BZR_DIRTY=$ZSH_THEME_BZR_PROMPT_CLEAN
|
|
||||||
fi
|
|
||||||
echo "$ZSH_THEME_BZR_PROMPT_PREFIX$BZR_CB$BZR_DIRTY$ZSH_THEME_BZR_PROMPT_SUFFIX"
|
|
||||||
fi
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user