Adjust config profiles
This commit is contained in:
25
config.yaml
25
config.yaml
@@ -2,8 +2,10 @@ actions:
|
|||||||
pre:
|
pre:
|
||||||
vundle-install: test -e ~/.vim/bundle/Vundle.vim || (mkdir -p ~/.vim/bundle; git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim )
|
vundle-install: test -e ~/.vim/bundle/Vundle.vim || (mkdir -p ~/.vim/bundle; git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim )
|
||||||
vundle-refresh: vim +VundleClean! +VundleInstall +VundleInstall! +qall
|
vundle-refresh: vim +VundleClean! +VundleInstall +VundleInstall! +qall
|
||||||
cache-font: fc-cache -f -v
|
font-cache: fc-cache -f -v
|
||||||
reload-xresources: xrdb ~/.Xresources
|
xresources-reload: xrdb ~/.Xresources
|
||||||
|
zsh-source: source ~/.zshrc
|
||||||
|
bash-source: source ~/.bashrc
|
||||||
config:
|
config:
|
||||||
backup: true
|
backup: true
|
||||||
create: true
|
create: true
|
||||||
@@ -12,6 +14,8 @@ dotfiles:
|
|||||||
f_bashrc:
|
f_bashrc:
|
||||||
src: bashrc
|
src: bashrc
|
||||||
dst: ~/.bashrc
|
dst: ~/.bashrc
|
||||||
|
actions:
|
||||||
|
- bash-source
|
||||||
f_vimrc:
|
f_vimrc:
|
||||||
src: vimrc
|
src: vimrc
|
||||||
dst: ~/.vimrc
|
dst: ~/.vimrc
|
||||||
@@ -25,7 +29,7 @@ dotfiles:
|
|||||||
src: Xresources
|
src: Xresources
|
||||||
dst: ~/.Xresources
|
dst: ~/.Xresources
|
||||||
actions:
|
actions:
|
||||||
- reload-xresources
|
- xresources-reload
|
||||||
f_i3_config:
|
f_i3_config:
|
||||||
src: i3_config
|
src: i3_config
|
||||||
dst: ~/.config/i3/config
|
dst: ~/.config/i3/config
|
||||||
@@ -36,7 +40,7 @@ dotfiles:
|
|||||||
src: fonts/Inconsolata-Regular/Inconsolata-Regular.ttf
|
src: fonts/Inconsolata-Regular/Inconsolata-Regular.ttf
|
||||||
dst: ~/.fonts/Inconsolata-Regular/Inconsolata-Regular.ttf
|
dst: ~/.fonts/Inconsolata-Regular/Inconsolata-Regular.ttf
|
||||||
actions:
|
actions:
|
||||||
- cache-font
|
- font-cache
|
||||||
f_gdbinit:
|
f_gdbinit:
|
||||||
src: gdbinit
|
src: gdbinit
|
||||||
dst: ~/.gdbinit
|
dst: ~/.gdbinit
|
||||||
@@ -46,6 +50,8 @@ dotfiles:
|
|||||||
f_zshrc:
|
f_zshrc:
|
||||||
src: zshrc
|
src: zshrc
|
||||||
dst: ~/.zshrc
|
dst: ~/.zshrc
|
||||||
|
actions:
|
||||||
|
- zsh-source
|
||||||
d_oh-my-zsh:
|
d_oh-my-zsh:
|
||||||
src: oh-my-zsh
|
src: oh-my-zsh
|
||||||
dst: ~/.oh-my-zsh
|
dst: ~/.oh-my-zsh
|
||||||
@@ -53,9 +59,17 @@ dotfiles:
|
|||||||
src: zsh/marc-pygmalion.zsh-theme
|
src: zsh/marc-pygmalion.zsh-theme
|
||||||
dst: ~/.oh-my-zsh/themes/marc-pygmalion.zsh-theme
|
dst: ~/.oh-my-zsh/themes/marc-pygmalion.zsh-theme
|
||||||
profiles:
|
profiles:
|
||||||
|
home:
|
||||||
|
include:
|
||||||
|
- zsh
|
||||||
|
- vim
|
||||||
|
- x11
|
||||||
|
- i3
|
||||||
|
- font
|
||||||
|
- git
|
||||||
|
- gdb
|
||||||
laptop:
|
laptop:
|
||||||
include:
|
include:
|
||||||
- bash
|
|
||||||
- zsh
|
- zsh
|
||||||
- vim
|
- vim
|
||||||
- x11
|
- x11
|
||||||
@@ -65,7 +79,6 @@ profiles:
|
|||||||
- gdb
|
- gdb
|
||||||
work:
|
work:
|
||||||
include:
|
include:
|
||||||
- bash
|
|
||||||
- zsh
|
- zsh
|
||||||
- vim
|
- vim
|
||||||
- x11
|
- x11
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ general {
|
|||||||
interval = 1
|
interval = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
{%@@ if profile == "workstation" @@%}
|
{%@@ if profile == "work" @@%}
|
||||||
order += "load"
|
order += "load"
|
||||||
order += "memory"
|
order += "memory"
|
||||||
order += "tztime local"
|
order += "tztime local"
|
||||||
|
|||||||
@@ -92,8 +92,8 @@ set undolevels=1337
|
|||||||
set tabstop=4
|
set tabstop=4
|
||||||
set softtabstop=4
|
set softtabstop=4
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
set noexpandtab " tabs are not spaces
|
" set noexpandtab " tabs are not spaces
|
||||||
" set expandtab " tabs are spaces
|
set expandtab " tabs are spaces
|
||||||
set smartindent
|
set smartindent
|
||||||
|
|
||||||
" Whitespaces
|
" Whitespaces
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
export TERM="xterm-256color"
|
export TERM="xterm-256color"
|
||||||
|
|
||||||
xrdb -load $HOME/.Xresources
|
xrdb -load $HOME/.Xresources
|
||||||
|
export SHELL="/bin/zsh"
|
||||||
|
setxkbmap -layout us
|
||||||
|
|
||||||
|
export LANG="en_US.UTF-8"
|
||||||
|
export LANGUAGE="en_US.UTF-8"
|
||||||
|
|
||||||
{%@@ if profile == "work" @@%}
|
{%@@ if profile == "work" @@%}
|
||||||
/share/bin/isda
|
/share/bin/isda
|
||||||
|
|||||||
Reference in New Issue
Block a user