Merge branch 'homemaker' into 'master'
Homemaker See merge request hactarus/dotfiles!1
This commit is contained in:
commit
39548f6541
34 changed files with 2270 additions and 879 deletions
22
.bashrc
22
.bashrc
|
@ -1,22 +0,0 @@
|
||||||
[ -z "$PS1" ] && return
|
|
||||||
|
|
||||||
export PATH=$PATH:~/bin
|
|
||||||
export VISUAL=/bin/nano
|
|
||||||
export EDITOR=/bin/nano
|
|
||||||
export CLASSPATH=$CLASSPATH:/opt
|
|
||||||
export VDPAU_TRACE=1
|
|
||||||
|
|
||||||
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
|
|
||||||
. /etc/bash_completion
|
|
||||||
fi
|
|
||||||
|
|
||||||
for _FILE in $(ls ~/dotfiles/bash/); do
|
|
||||||
source ~/dotfiles/bash/$_FILE
|
|
||||||
done
|
|
||||||
|
|
||||||
#source ~/ovhrc
|
|
||||||
PATH="/home/qgodefro/perl5/bin${PATH:+:${PATH}}"; export PATH;
|
|
||||||
PERL5LIB="/home/qgodefro/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
|
|
||||||
PERL_LOCAL_LIB_ROOT="/home/qgodefro/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
|
|
||||||
PERL_MB_OPT="--install_base \"/home/qgodefro/perl5\""; export PERL_MB_OPT;
|
|
||||||
PERL_MM_OPT="INSTALL_BASE=/home/qgodefro/perl5"; export PERL_MM_OPT;
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit ad59bf2e80752f86158da3d1fac50f8d6fd13b2a
|
|
279
.nanorc
279
.nanorc
|
@ -1,279 +0,0 @@
|
||||||
## Sample initialization file for GNU nano.
|
|
||||||
##
|
|
||||||
## Please note that you must have configured nano with --enable-nanorc
|
|
||||||
## for this file to be read! Also note that this file should not be in
|
|
||||||
## DOS or Mac format, and that characters specially interpreted by the
|
|
||||||
## shell should not be escaped here.
|
|
||||||
##
|
|
||||||
## To make sure an option is disabled, use "unset <option>".
|
|
||||||
##
|
|
||||||
## For the options that take parameters, the default value is given.
|
|
||||||
## Other options are unset by default.
|
|
||||||
##
|
|
||||||
## Quotes inside string parameters don't have to be escaped with
|
|
||||||
## backslashes. The last double quote in the string will be treated as
|
|
||||||
## its end. For example, for the "brackets" option, ""')>]}" will match
|
|
||||||
## ", ', ), >, ], and }.
|
|
||||||
|
|
||||||
## Silently ignore problems with unknown directives in the nanorc file.
|
|
||||||
## Useful when your nanorc file might be read on systems with multiple
|
|
||||||
## versions of nano installed (e.g. your home directory is on NFS).
|
|
||||||
# set quiet
|
|
||||||
|
|
||||||
## When soft line wrapping is enabled, make it wrap lines at blanks
|
|
||||||
## (tabs and spaces) instead of always at the edge of the screen.
|
|
||||||
# set atblanks
|
|
||||||
|
|
||||||
## Use auto-indentation.
|
|
||||||
# set autoindent
|
|
||||||
|
|
||||||
## Back up files to the current filename plus a tilde.
|
|
||||||
# set backup
|
|
||||||
|
|
||||||
## The directory to put unique backup files in.
|
|
||||||
set backupdir "~/.cache/nano/"
|
|
||||||
|
|
||||||
## Do backwards searches by default.
|
|
||||||
# set backwards
|
|
||||||
|
|
||||||
## Use bold text instead of reverse video text.
|
|
||||||
# set boldtext
|
|
||||||
|
|
||||||
## The characters treated as closing brackets when justifying
|
|
||||||
## paragraphs. They cannot contain blank characters. Only closing
|
|
||||||
## punctuation, optionally followed by closing brackets, can end
|
|
||||||
## sentences.
|
|
||||||
set brackets ""')>]}"
|
|
||||||
|
|
||||||
## Do case-sensitive searches by default.
|
|
||||||
# set casesensitive
|
|
||||||
|
|
||||||
## Constantly display the cursor position in the status bar. Note that
|
|
||||||
## this overrides "quickblank".
|
|
||||||
set constantshow
|
|
||||||
## (The old form, 'const', is deprecated.)
|
|
||||||
|
|
||||||
## Use cut-from-cursor-to-end-of-line by default.
|
|
||||||
# set cutfromcursor
|
|
||||||
## (The old form, 'cut', is deprecated.)
|
|
||||||
|
|
||||||
## Set the line length for wrapping text and justifying paragraphs.
|
|
||||||
## If the value is 0 or less, the wrapping point will be the screen
|
|
||||||
## width less this number.
|
|
||||||
# set fill -4
|
|
||||||
|
|
||||||
## Remember the used search/replace strings for the next session.
|
|
||||||
# set historylog
|
|
||||||
|
|
||||||
## Make the justify command kill whitespace at the end of lines.
|
|
||||||
# set justifytrim
|
|
||||||
|
|
||||||
## Display line numbers to the left of the text.
|
|
||||||
# set linenumbers
|
|
||||||
|
|
||||||
## Enable vim-style lock-files. This is just to let a vim user know you
|
|
||||||
## are editing a file [s]he is trying to edit and vice versa. There are
|
|
||||||
## no plans to implement vim-style undo state in these files.
|
|
||||||
# set locking
|
|
||||||
|
|
||||||
## The opening and closing brackets that can be found by bracket
|
|
||||||
## searches. They cannot contain blank characters. The former set must
|
|
||||||
## come before the latter set, and both must be in the same order.
|
|
||||||
set matchbrackets "(<[{)>]}"
|
|
||||||
|
|
||||||
## Use the blank line below the title bar as extra editing space.
|
|
||||||
# set morespace
|
|
||||||
|
|
||||||
## Enable mouse support, if available for your system. When enabled,
|
|
||||||
## mouse clicks can be used to place the cursor, set the mark (with a
|
|
||||||
## double click), and execute shortcuts. The mouse will work in the X
|
|
||||||
## Window System, and on the console when gpm is running.
|
|
||||||
# set mouse
|
|
||||||
|
|
||||||
## Switch on multiple file buffers (inserting a file will put it into
|
|
||||||
## a separate buffer).
|
|
||||||
# set multibuffer
|
|
||||||
|
|
||||||
## Don't convert files from DOS/Mac format.
|
|
||||||
# set noconvert
|
|
||||||
|
|
||||||
## Don't display the helpful shortcut lists at the bottom of the screen.
|
|
||||||
# set nohelp
|
|
||||||
|
|
||||||
## Don't pause between warnings at startup. Which means that only the
|
|
||||||
## last one will be readable (when there are multiple ones).
|
|
||||||
# set nopauses
|
|
||||||
|
|
||||||
## Don't add newlines to the ends of files.
|
|
||||||
set nonewlines
|
|
||||||
|
|
||||||
## Don't wrap text at all.
|
|
||||||
# set nowrap
|
|
||||||
|
|
||||||
## Set operating directory. nano will not read or write files outside
|
|
||||||
## this directory and its subdirectories. Also, the current directory
|
|
||||||
## is changed to here, so any files are inserted from this dir. A blank
|
|
||||||
## string means the operating-directory feature is turned off.
|
|
||||||
# set operatingdir ""
|
|
||||||
|
|
||||||
## Remember the cursor position in each file for the next editing session.
|
|
||||||
# set positionlog
|
|
||||||
## (The old form, 'poslog', is deprecated.)
|
|
||||||
|
|
||||||
## Preserve the XON and XOFF keys (^Q and ^S).
|
|
||||||
# set preserve
|
|
||||||
|
|
||||||
## The characters treated as closing punctuation when justifying
|
|
||||||
## paragraphs. They cannot contain blank characters. Only closing
|
|
||||||
## punctuation, optionally followed by closing brackets, can end
|
|
||||||
## sentences.
|
|
||||||
set punct "!.?"
|
|
||||||
|
|
||||||
## Do quick status-bar blanking. Status-bar messages will disappear after
|
|
||||||
## 1 keystroke instead of 26. Note that "constantshow" overrides this.
|
|
||||||
# set quickblank
|
|
||||||
|
|
||||||
## The email-quote string, used to justify email-quoted paragraphs.
|
|
||||||
## This is an extended regular expression if your system supports them,
|
|
||||||
## otherwise a literal string.
|
|
||||||
## If you have extended regular expression support, the default is:
|
|
||||||
# set quotestr "^([ ]*[#:>\|}])+"
|
|
||||||
## Otherwise:
|
|
||||||
# set quotestr "> "
|
|
||||||
|
|
||||||
## Fix Backspace/Delete confusion problem.
|
|
||||||
# set rebinddelete
|
|
||||||
|
|
||||||
## Fix numeric keypad key confusion problem.
|
|
||||||
# set rebindkeypad
|
|
||||||
|
|
||||||
## Do extended regular expression searches by default.
|
|
||||||
# set regexp
|
|
||||||
|
|
||||||
## Put the cursor on the highlighted item in the file browser;
|
|
||||||
## useful for people who use a braille display.
|
|
||||||
# set showcursor
|
|
||||||
|
|
||||||
## Make the Home key smarter. When Home is pressed anywhere but at the
|
|
||||||
## very beginning of non-whitespace characters on a line, the cursor
|
|
||||||
## will jump to that beginning (either forwards or backwards). If the
|
|
||||||
## cursor is already at that position, it will jump to the true
|
|
||||||
## beginning of the line.
|
|
||||||
# set smarthome
|
|
||||||
|
|
||||||
## Use smooth scrolling as the default.
|
|
||||||
# set smooth
|
|
||||||
|
|
||||||
## Enable soft line wrapping (AKA full-line display).
|
|
||||||
# set softwrap
|
|
||||||
|
|
||||||
## Use this spelling checker instead of the internal one. This option
|
|
||||||
## does not have a default value.
|
|
||||||
# set speller "aspell -x -c"
|
|
||||||
|
|
||||||
## Allow nano to be suspended.
|
|
||||||
# set suspend
|
|
||||||
|
|
||||||
## Use this tab size instead of the default; it must be greater than 0.
|
|
||||||
set tabsize 4
|
|
||||||
|
|
||||||
## Convert typed tabs to spaces.
|
|
||||||
# set tabstospaces
|
|
||||||
|
|
||||||
## Save automatically on exit; don't prompt.
|
|
||||||
# set tempfile
|
|
||||||
|
|
||||||
## Disallow file modification. Why would you want this in an rcfile? ;)
|
|
||||||
# set view
|
|
||||||
|
|
||||||
## The two single-column characters used to display the first characters
|
|
||||||
## of tabs and spaces. 187 in ISO 8859-1 (0000BB in Unicode) and 183 in
|
|
||||||
## ISO-8859-1 (0000B7 in Unicode) seem to be good values for these.
|
|
||||||
## The default when in a UTF-8 locale:
|
|
||||||
# set whitespace "»·"
|
|
||||||
## The default otherwise:
|
|
||||||
# set whitespace ">."
|
|
||||||
|
|
||||||
## Detect word boundaries differently by treating punctuation
|
|
||||||
## characters as parts of words.
|
|
||||||
# set wordbounds
|
|
||||||
|
|
||||||
## The characters (besides alphanumeric ones) that should be considered
|
|
||||||
## as parts of words. This option does not have a default value. When
|
|
||||||
## set, it overrides option 'set wordbounds'.
|
|
||||||
# set wordchars "<_>."
|
|
||||||
|
|
||||||
|
|
||||||
## Paint the interface elements of nano.
|
|
||||||
## These are examples; by default there are no colors.
|
|
||||||
set titlecolor brightwhite,blue
|
|
||||||
set statuscolor brightwhite,green
|
|
||||||
set selectedcolor brightwhite,magenta
|
|
||||||
set numbercolor cyan
|
|
||||||
set keycolor cyan
|
|
||||||
set functioncolor green
|
|
||||||
## In root's .nanorc you might want to use:
|
|
||||||
# set titlecolor brightwhite,red
|
|
||||||
# set statuscolor brightwhite,red
|
|
||||||
# set selectedcolor brightwhite,cyan
|
|
||||||
# set numbercolor magenta
|
|
||||||
# set keycolor brightmagenta
|
|
||||||
# set functioncolor magenta
|
|
||||||
|
|
||||||
|
|
||||||
## Setup of syntax coloring.
|
|
||||||
##
|
|
||||||
## Format:
|
|
||||||
##
|
|
||||||
## syntax "short description" ["filename regex" ...]
|
|
||||||
##
|
|
||||||
## The "none" syntax is reserved; specifying it on the command line is
|
|
||||||
## the same as not having a syntax at all. The "default" syntax is
|
|
||||||
## special: it takes no filename regexes, and applies to files that
|
|
||||||
## don't match any other syntax's filename regexes.
|
|
||||||
##
|
|
||||||
## color foreground,background "regex" ["regex"...]
|
|
||||||
## or
|
|
||||||
## icolor foreground,background "regex" ["regex"...]
|
|
||||||
##
|
|
||||||
## "color" will do case-sensitive matches, while "icolor" will do
|
|
||||||
## case-insensitive matches.
|
|
||||||
##
|
|
||||||
## Valid colors: white, black, red, blue, green, yellow, magenta, cyan.
|
|
||||||
## For foreground colors, you may use the prefix "bright" to get a
|
|
||||||
## stronger highlight.
|
|
||||||
##
|
|
||||||
## To use multi-line regexes, use the start="regex" end="regex"
|
|
||||||
## [start="regex" end="regex"...] format.
|
|
||||||
##
|
|
||||||
## If your system supports transparency, not specifying a background
|
|
||||||
## color will use a transparent color. If you don't want this, be sure
|
|
||||||
## to set the background color to black or white.
|
|
||||||
##
|
|
||||||
## All regexes should be extended regular expressions.
|
|
||||||
##
|
|
||||||
## If you wish, you may put your syntax definitions in separate files.
|
|
||||||
## You can make use of such files as follows:
|
|
||||||
##
|
|
||||||
## include "/path/to/syntax_file.nanorc"
|
|
||||||
##
|
|
||||||
## Unless otherwise noted, the name of the syntax file (without the
|
|
||||||
## ".nanorc" extension) should be the same as the "short description"
|
|
||||||
## name inside that file. These names are kept fairly short to make
|
|
||||||
## them easier to remember and faster to type using nano's -Y option.
|
|
||||||
##
|
|
||||||
## To include all existing syntax definitions, you can do:
|
|
||||||
include "/usr/share/nano/*.nanorc"
|
|
||||||
|
|
||||||
|
|
||||||
## Key bindings.
|
|
||||||
## See nanorc(5) (section REBINDING KEYS) for more details on this.
|
|
||||||
##
|
|
||||||
## The following three functions are not bound to any key by default.
|
|
||||||
## You may wish to choose different keys than the ones suggested here.
|
|
||||||
# bind ^S savefile main
|
|
||||||
# bind M-B cutwordleft main
|
|
||||||
# bind M-N cutwordright main
|
|
||||||
|
|
||||||
## Set this if your Backspace key sends Del most of the time.
|
|
||||||
# bind Del backspace all
|
|
52
.vimrc
52
.vimrc
|
@ -1,52 +0,0 @@
|
||||||
" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
|
|
||||||
" the call to :runtime you can find below. If you wish to change any of those
|
|
||||||
" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
|
|
||||||
" will be overwritten everytime an upgrade of the vim packages is performed.
|
|
||||||
" It is recommended to make changes after sourcing debian.vim since it alters
|
|
||||||
" the value of the 'compatible' option.
|
|
||||||
|
|
||||||
" This line should not be removed as it ensures that various options are
|
|
||||||
" properly set to work with the Vim-related packages available in Debian.
|
|
||||||
runtime! debian.vim
|
|
||||||
|
|
||||||
" Uncomment the next line to make Vim more Vi-compatible
|
|
||||||
" NOTE: debian.vim sets 'nocompatible'. Setting 'compatible' changes numerous
|
|
||||||
" options, so any other options should be set AFTER setting 'compatible'.
|
|
||||||
"set compatible
|
|
||||||
|
|
||||||
" Vim5 and later versions support syntax highlighting. Uncommenting the next
|
|
||||||
" line enables syntax highlighting by default.
|
|
||||||
"syntax on
|
|
||||||
|
|
||||||
" If using a dark background within the editing area and syntax highlighting
|
|
||||||
" turn on this option as well
|
|
||||||
"set background=dark
|
|
||||||
|
|
||||||
" Uncomment the following to have Vim jump to the last position when
|
|
||||||
" reopening a file
|
|
||||||
"if has("autocmd")
|
|
||||||
" au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
|
||||||
"endif
|
|
||||||
|
|
||||||
" Uncomment the following to have Vim load indentation rules and plugins
|
|
||||||
" according to the detected filetype.
|
|
||||||
"if has("autocmd")
|
|
||||||
" filetype plugin indent on
|
|
||||||
"endif
|
|
||||||
|
|
||||||
" The following are commented out as they cause vim to behave a lot
|
|
||||||
" differently from regular Vi. They are highly recommended though.
|
|
||||||
"set showcmd " Show (partial) command in status line.
|
|
||||||
"set showmatch " Show matching brackets.
|
|
||||||
"set ignorecase " Do case insensitive matching
|
|
||||||
"set smartcase " Do smart case matching
|
|
||||||
"set incsearch " Incremental search
|
|
||||||
"set autowrite " Automatically save before commands like :next and :make
|
|
||||||
"set hidden " Hide buffers when they are abandoned
|
|
||||||
"set mouse=a " Enable mouse usage (all modes)
|
|
||||||
|
|
||||||
" Source a global configuration file if available
|
|
||||||
if filereadable("/etc/vim/vimrc.local")
|
|
||||||
source /etc/vim/vimrc.local
|
|
||||||
endif
|
|
||||||
|
|
276
.zshrc
276
.zshrc
|
@ -1,276 +0,0 @@
|
||||||
export PATH="/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:~/bin:~/toolbox:~/hosting-run-scripts/rc-files"
|
|
||||||
|
|
||||||
export TERM=rxvt-unicode-256color
|
|
||||||
|
|
||||||
# completion
|
|
||||||
autoload -U compinit
|
|
||||||
compinit
|
|
||||||
|
|
||||||
# correction
|
|
||||||
setopt correct
|
|
||||||
|
|
||||||
#history
|
|
||||||
HISTFILE="$HOME/.zshistory"
|
|
||||||
HISTSIZE=20000
|
|
||||||
SAVEHIST=10000
|
|
||||||
alias hist='history -D -E'
|
|
||||||
setopt hist_ignore_dups
|
|
||||||
|
|
||||||
#autocd
|
|
||||||
setopt autocd
|
|
||||||
|
|
||||||
#extended wildcards
|
|
||||||
setopt extendedglob
|
|
||||||
|
|
||||||
#color adn format def
|
|
||||||
local black="%{"$'\033[00;30m'"%}"
|
|
||||||
local green="%{"$'\033[00;32m'"%}"
|
|
||||||
local red="%{"$'\033[00;31m'"%}"
|
|
||||||
local yellow="%{"$'\033[00;33m'"%}"
|
|
||||||
local blue="%{"$'\033[00;34m'"%}"
|
|
||||||
local dblue="%{"$'\033[00;34m'"%}"
|
|
||||||
local magenta="%{"$'\033[00;35m'"%}"
|
|
||||||
local cyan="%{"$'\033[00;36m'"%}"
|
|
||||||
|
|
||||||
local bgreen="%{"$'\033[03;32m'"%}"
|
|
||||||
local bcyan="%{"$'\033[03;36m'"%}"
|
|
||||||
|
|
||||||
local bold="%{"$'\033[01;39m'"%}"
|
|
||||||
local norm="%{"$'\033[00m'"%}"
|
|
||||||
|
|
||||||
setopt PROMPT_SUBST
|
|
||||||
autoload -Uz add-zsh-hook
|
|
||||||
|
|
||||||
#source /home/qgodefro/dotfiles/zshrc.sh
|
|
||||||
source ~/hosting-run-scripts/rc-files/ovhrc
|
|
||||||
|
|
||||||
export PS1="${bold}${bgreen}%n${yellow} â—‹ ${bcyan}%m ${norm}[${magenta}%~${norm}]${norm}${norm} %# ${norm}"
|
|
||||||
export RPROMPT='$(git_super_status) ${norm}(%*) (%(?.${green}0.${red}%?)${norm})${norm}'
|
|
||||||
|
|
||||||
## don't ask me 'do you wish to see all XX possibilities' before menu selection
|
|
||||||
LISTPROMPT=''
|
|
||||||
|
|
||||||
## SPROMPT - the spelling prompt
|
|
||||||
SPROMPT='zsh: correct '%R' to '%r' ? ([Y]es/[N]o/[E]dit/[A]bort) '
|
|
||||||
|
|
||||||
###########################################################################
|
|
||||||
|
|
||||||
#known hosts completion
|
|
||||||
hosts=( $(cat /etc/hosts | grep -v "^#" | awk '{print $1}'| cut -d"," -f1), $(cat $HOME/.ssh/known_hosts | awk '{print $1}'| cut -d"," -f1))
|
|
||||||
zstyle ':completion:*' hosts $hosts
|
|
||||||
|
|
||||||
## add colors to completions
|
|
||||||
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
|
||||||
|
|
||||||
## find all suid files
|
|
||||||
suidfind ()
|
|
||||||
{ ls -l /**/*(su0x) }
|
|
||||||
|
|
||||||
# Push the former directory in the pile when we use 'cd'
|
|
||||||
setopt auto_pushd
|
|
||||||
# Ignore repetition in the pile
|
|
||||||
setopt pushd_ignore_dups
|
|
||||||
# Do not display pile after a 'pushd' or 'popd'
|
|
||||||
setopt pushd_silent
|
|
||||||
# 'pushd' without given arguments = 'pushd $HOME'
|
|
||||||
setopt pushd_to_home
|
|
||||||
|
|
||||||
# Ask confirmation when mass deleting
|
|
||||||
unsetopt rm_star_silent
|
|
||||||
|
|
||||||
eval "$(dircolors -b $HOME/.myenv/dircolors.256dark)"
|
|
||||||
|
|
||||||
### DIRCOLORS ###
|
|
||||||
# enable color support of ls and also add handy aliases
|
|
||||||
if [ "$TERM" != "dumb" ]; then
|
|
||||||
[ -e "$HOME/.myenv/dircolors" ] && DIR_COLORS="$HOME/.myenv/dircolors"
|
|
||||||
[ -e "$DIR_COLORS" ] || DIR_COLORS=""
|
|
||||||
eval "`dircolors -b $DIR_COLORS`"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
##########################################################################
|
|
||||||
#Alias alias ...
|
|
||||||
|
|
||||||
# alias expend
|
|
||||||
alias sudo='sudo '
|
|
||||||
|
|
||||||
alias ls='ls --classify --tabsize=0 --literal --color=auto --show-control-chars --human-readable'
|
|
||||||
alias l='ls'
|
|
||||||
alias ll='ls -ahl'
|
|
||||||
|
|
||||||
# autocorrect
|
|
||||||
alias sl='ls'
|
|
||||||
alias ms='ls'
|
|
||||||
alias lq='ls'
|
|
||||||
#alias sm='ls'
|
|
||||||
alias ql='ls'
|
|
||||||
|
|
||||||
alias xs='cd'
|
|
||||||
alias vf='cd'
|
|
||||||
|
|
||||||
############
|
|
||||||
|
|
||||||
alias h='history'
|
|
||||||
|
|
||||||
#upgrading piss me off
|
|
||||||
alias upgrade='apt-get update && apt-get upgrade && apt-get clean'
|
|
||||||
|
|
||||||
alias man='man -P most'
|
|
||||||
|
|
||||||
# changing keymap quickly
|
|
||||||
alias fr='setxkbmap fr'
|
|
||||||
alias us='setxkbmap us'
|
|
||||||
alias 1='fr'
|
|
||||||
alias 2='us'
|
|
||||||
alias 3='ru'
|
|
||||||
|
|
||||||
# Command to compress/uncompress files to/from tar.gz quickly
|
|
||||||
alias ctz='tar cfvz'
|
|
||||||
alias xtz='tar zxvf'
|
|
||||||
alias xtj='tar jxvf'
|
|
||||||
|
|
||||||
alias df='df --human-readable'
|
|
||||||
alias du='du --human-readable'
|
|
||||||
|
|
||||||
alias rwin='rdesktop -g 1400x900 windesk'
|
|
||||||
|
|
||||||
alias sr='ssh -l root'
|
|
||||||
#alias ssh='ssh -2 -C -c blowfish'
|
|
||||||
alias cgrep="grep -n --color"
|
|
||||||
alias show="ls | grep --color $1"
|
|
||||||
|
|
||||||
alias p='popd'
|
|
||||||
|
|
||||||
#Opening specific files with adapted software
|
|
||||||
alias -s tex=vim
|
|
||||||
alias -s c=vim
|
|
||||||
alias -s com=w3m
|
|
||||||
alias -s fr=w3m
|
|
||||||
alias -s org=w3m
|
|
||||||
alias -s html=w3m
|
|
||||||
|
|
||||||
alias er="shred -u -z -n 25 "
|
|
||||||
alias more=less
|
|
||||||
# Special functions
|
|
||||||
###################################################
|
|
||||||
|
|
||||||
needed() {
|
|
||||||
objdump -p $1 | grep NEEDED | awk '{print $2;};'
|
|
||||||
}
|
|
||||||
|
|
||||||
status() {
|
|
||||||
print ""
|
|
||||||
print "Date..: "$(date "+%Y-%m-%d %H:%M:%S")""
|
|
||||||
print "Shell.: Zsh $ZSH_VERSION (PID = $$, $SHLVL nests)"
|
|
||||||
print "Term..: $TTY ($TERM), $BAUD bauds, $COLUMNS x $LINES cars"
|
|
||||||
print "Login.: $LOGNAME (UID = $EUID) on $HOST"
|
|
||||||
print "System: $(cat /etc/[A-Za-z]*[_-][rv]e[lr]*)"
|
|
||||||
print "Uptime:$(uptime)"
|
|
||||||
print ""
|
|
||||||
}
|
|
||||||
|
|
||||||
# searching piss me off too
|
|
||||||
s(){
|
|
||||||
apt-cache search $1 $2 $3
|
|
||||||
}
|
|
||||||
|
|
||||||
# See below...
|
|
||||||
i(){
|
|
||||||
apt-get install $1 $2 $3
|
|
||||||
}
|
|
||||||
|
|
||||||
z0() {
|
|
||||||
export TERM=xterm ; ssh qgodefro@z3.ovh.net -t -- root@$1 ; export TERM=rxvt-unicode
|
|
||||||
}
|
|
||||||
|
|
||||||
z3() {
|
|
||||||
ssh qgodefro@z3.ovh.net -t -- qgodefro@$1
|
|
||||||
}
|
|
||||||
|
|
||||||
mongs() {
|
|
||||||
ssh qgodefro@z3.ovh.net -t -- root@mon-gs.ovh.net
|
|
||||||
}
|
|
||||||
|
|
||||||
mongs2() {
|
|
||||||
ssh qgodefro@z3.ovh.net -t -- qgodefro@mon-gs2.ovh.net
|
|
||||||
}
|
|
||||||
|
|
||||||
mutu71() {
|
|
||||||
ssh qgodefro@z3.ovh.net -t -- root@mutubackup71-10g-rbx.ovh.net
|
|
||||||
}
|
|
||||||
|
|
||||||
mutu64() {
|
|
||||||
ssh qgodefro@z3.ovh.net -t -- root@mutubackup64-10g-rbx.ovh.net
|
|
||||||
}
|
|
||||||
|
|
||||||
qgodefro() {
|
|
||||||
ssh root@gw01.admings.net -p 10106
|
|
||||||
}
|
|
||||||
|
|
||||||
mpsgw() {
|
|
||||||
ssh root@5.135.111.53
|
|
||||||
}
|
|
||||||
|
|
||||||
sm() {
|
|
||||||
ssh -i /home/qgodefro/.ssh/id_rsa_sm qgodefro@213.186.33.101 -t --
|
|
||||||
}
|
|
||||||
|
|
||||||
ptsapi() {
|
|
||||||
export TERM=xterm ; ssh -i /home/qgodefro/.ssh/id_rsa_sm qgodefro@213.186.33.101 -t -- gs@10.15.21.1 ; export TERM=rxvt-unicode-256color
|
|
||||||
}
|
|
||||||
|
|
||||||
ptsmozg() {
|
|
||||||
export TERM=xterm ; ssh -i /home/qgodefro/.ssh/id_rsa_sm qgodefro@213.186.33.101 -t -- robot-gs@10.15.21.13 ; export TERM=rxvt-unicode-256color
|
|
||||||
}
|
|
||||||
|
|
||||||
meltingpot() {
|
|
||||||
export TERM=xterm ; ssh -i /home/qgodefro/.ssh/id_rsa_sm qgodefro@213.186.33.101 -t -- gs@mozg-meltingpot ; export TERM=rxvt-unicode-256color
|
|
||||||
}
|
|
||||||
|
|
||||||
sdev() {
|
|
||||||
export TERM=xterm ; ssh -i /home/qgodefro/.ssh/id_rsa_sm qgodefro@213.186.33.101 -t -- qgodefro@qgodefro.sdev ; export TERM=rxvt-unicode-256color
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bigdata() {
|
|
||||||
export TERM=xterm ; ssh -i /home/qgodefro/.ssh/id_rsa_sm qgodefro@213.186.33.101 -t -- bigdata@mozg-bigdata ; export TERM=rxvt-unicode-256color
|
|
||||||
}
|
|
||||||
|
|
||||||
alias prestaadminca='z0 192.99.134.113'
|
|
||||||
alias prestaadminfr='z0 178.32.71.66'
|
|
||||||
|
|
||||||
alias ws='python -m SimpleHTTPServer 1024'
|
|
||||||
|
|
||||||
alias recordscreen='ffmpeg -video_size 1920x1080 -framerate 25 -f x11grab -i :0.0+1280,0'
|
|
||||||
|
|
||||||
alias meteo='curl -4 http://wttr.in/Lyon'
|
|
||||||
|
|
||||||
goo() {
|
|
||||||
Q="$@";
|
|
||||||
GOOG_URL="http://www.google.com/search?q=";
|
|
||||||
AGENT="Mozilla/4.0";
|
|
||||||
stream=$(curl -A "$AGENT" -skLm 10 "${GOOG_URL}\"${Q/\ /+}\"" | grep -oP '\/url\?q=.+?&' | sed 's/\/url?q=//;s/&//'); echo -e "$
|
|
||||||
{stream//\%/\x}"
|
|
||||||
}
|
|
||||||
|
|
||||||
prettynetstat() {
|
|
||||||
netstat -an | grep ESTABLISHED | awk '{print $5}' | awk -F: '{print $1}' | sort | uniq -c | awk '{ printf("%s\t%s\t",$2,$1) ; for (i =0; i < $1; i++) {printf("*")}; print "" }'
|
|
||||||
}
|
|
||||||
|
|
||||||
prettyroute() {
|
|
||||||
route -Cn | grep eth0 | awk '{print $2}' | awk -F: '{print $1}' | sort | uniq -c | awk '{ printf("%s\t%s\t",$2,$1) ; for (i = 0; i < $1; i++) {printf("*")}; print "" }'
|
|
||||||
}
|
|
||||||
|
|
||||||
established() {
|
|
||||||
for i in `netstat -an | grep ESTABLISHED | awk '{print $5}' | awk -F: '{print $1}' | sort | uniq`;
|
|
||||||
do
|
|
||||||
whois $i | grep -i netname | awk '{printf("%s : ",$2)}'
|
|
||||||
echo $i
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
rfc () { curl -s http://www.ietf.org/rfc/rfc$1.txt | less }
|
|
||||||
|
|
||||||
bindkey '^[[3~' delete-char # Del
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
IMAGE=docker.edmund.ovh/hactarus/$(basename $(pwd))
|
|
||||||
VERSION=dev
|
|
||||||
|
|
||||||
default: build
|
|
||||||
|
|
||||||
build: Dockerfile
|
|
||||||
docker build -t $IMAGE:$VERSION .
|
|
||||||
|
|
||||||
run:
|
|
||||||
docker run --rm -ti $IMAGE:$VERSION
|
|
||||||
|
|
||||||
push: Dockerfile
|
|
||||||
docker push $IMAGE:$VERSION
|
|
||||||
|
|
||||||
prod: Dockerfile
|
|
||||||
docker tag $IMAGE:$VERSION $IMAGE:latest
|
|
||||||
docker push $IMAGE:latest
|
|
|
@ -1,26 +0,0 @@
|
||||||
if [ -x /usr/bin/dircolors ]; then
|
|
||||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
||||||
alias ls='ls --color=auto'
|
|
||||||
alias dir='dir --color=auto'
|
|
||||||
alias vdir='vdir --color=auto'
|
|
||||||
alias grep='grep --color=auto'
|
|
||||||
alias fgrep='fgrep --color=auto'
|
|
||||||
alias egrep='egrep --color=auto'
|
|
||||||
fi
|
|
||||||
alias ls='ls --color=auto'
|
|
||||||
alias ll='ls -lah'
|
|
||||||
alias la='ls -A'
|
|
||||||
alias flip="shuf -i 0-1 -n 1 | sed -e 's/1/Pile/' -e 's/0/Face/'"
|
|
||||||
alias dl="wget -r -k -T 5 -t 2 -U 'Mozilla/5.0 (X11; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0' "
|
|
||||||
alias paste="pastebin -m -n Hactar"
|
|
||||||
alias pass="tr -dc A-Za-z0-9_ < /dev/urandom | head -c 20 | xargs"
|
|
||||||
alias oss="openstack server"
|
|
||||||
alias osc="openstack console log show"
|
|
||||||
alias public="z3 root@public01.infra.gs.ovh.net"
|
|
||||||
alias melt="sm3 gs@mozg-meltingpot.ovh.ha.ovh.net"
|
|
||||||
alias hr-admin="z3 root@hr-admin.rungs.ovh"
|
|
||||||
alias mis="sm3 mozg-mis.ovh.ha.ovh.net"
|
|
||||||
alias thot_reseller-robot-preprod='thot '\''wss://thot.ovh.com/tail/?tk=e4bdf746-d041-41d3-81a5-7e4629d3e507'\'
|
|
||||||
alias thot_cloudweb-robot-preprod='thot '\''wss://thot.ovh.com/tail/?tk=c89ec346-ce0d-4504-b69b-b3c216e91385'\'
|
|
||||||
alias m5='sm3 ovh@mozg-mutu5.ovh.ha.ovh.net'
|
|
||||||
alias gw01='z3 gw01.infra.mps.gs.ovh.net'
|
|
|
@ -1,3 +0,0 @@
|
||||||
export GOROOT=$HOME/go
|
|
||||||
export GOPATH=$GOROOT/bin
|
|
||||||
export PATH=~/toolbox:~/bin:$PATH:$GOROOT/bin
|
|
174
bash/bash_ps
174
bash/bash_ps
|
@ -1,174 +0,0 @@
|
||||||
# Normal Colors
|
|
||||||
Black='\e[0;30m' # Black
|
|
||||||
Red='\e[0;31m' # Red
|
|
||||||
Green='\e[0;32m' # Green
|
|
||||||
Yellow='\e[0;33m' # Yellow
|
|
||||||
Blue='\e[0;34m' # Blue
|
|
||||||
Purple='\e[0;35m' # Purple
|
|
||||||
Cyan='\e[0;36m' # Cyan
|
|
||||||
White='\e[0;37m' # White
|
|
||||||
|
|
||||||
# Bold
|
|
||||||
BBlack='\e[1;30m' # Black
|
|
||||||
BRed='\e[1;31m' # Red
|
|
||||||
BGreen='\e[1;32m' # Green
|
|
||||||
BYellow='\e[1;33m' # Yellow
|
|
||||||
BBlue='\e[1;34m' # Blue
|
|
||||||
BPurple='\e[1;35m' # Purple
|
|
||||||
BCyan='\e[1;36m' # Cyan
|
|
||||||
BWhite='\e[1;37m' # White
|
|
||||||
|
|
||||||
# Background
|
|
||||||
On_Black='\e[40m' # Black
|
|
||||||
On_Red='\e[41m' # Red
|
|
||||||
On_Green='\e[42m' # Green
|
|
||||||
On_Yellow='\e[43m' # Yellow
|
|
||||||
On_Blue='\e[44m' # Blue
|
|
||||||
On_Purple='\e[45m' # Purple
|
|
||||||
On_Cyan='\e[46m' # Cyan
|
|
||||||
On_White='\e[47m' # White
|
|
||||||
|
|
||||||
NC="\e[m" # Color Reset
|
|
||||||
#-------------------------------------------------------------
|
|
||||||
# Shell Prompt - for many examples, see:
|
|
||||||
# http://www.debian-administration.org/articles/205
|
|
||||||
# http://www.askapache.com/linux/bash-power-prompt.html
|
|
||||||
# http://tldp.org/HOWTO/Bash-Prompt-HOWTO
|
|
||||||
# https://github.com/nojhan/liquidprompt
|
|
||||||
#-------------------------------------------------------------
|
|
||||||
# Current Format: [TIME USER@HOST PWD] >
|
|
||||||
# TIME:
|
|
||||||
# Green == machine load is low
|
|
||||||
# Orange == machine load is medium
|
|
||||||
# Red == machine load is high
|
|
||||||
# ALERT == machine load is very high
|
|
||||||
# USER:
|
|
||||||
# Cyan == normal user
|
|
||||||
# Orange == SU to user
|
|
||||||
# Red == root
|
|
||||||
# HOST:
|
|
||||||
# Cyan == local session
|
|
||||||
# Green == secured remote connection (via ssh)
|
|
||||||
# Red == unsecured remote connection
|
|
||||||
# PWD:
|
|
||||||
# Green == more than 10% free disk space
|
|
||||||
# Orange == less than 10% free disk space
|
|
||||||
# ALERT == less than 5% free disk space
|
|
||||||
# Red == current user does not have write privileges
|
|
||||||
# Cyan == current filesystem is size zero (like /proc)
|
|
||||||
# >:
|
|
||||||
# White == no background or suspended jobs in this shell
|
|
||||||
# Cyan == at least one background job in this shell
|
|
||||||
# Orange == at least one suspended job in this shell
|
|
||||||
#
|
|
||||||
# Command is added to the history file each time you hit enter,
|
|
||||||
# so it's available to all shells (using 'history -a').
|
|
||||||
|
|
||||||
|
|
||||||
# Test connection type:
|
|
||||||
if [ -n "${SSH_CONNECTION}" ]; then
|
|
||||||
CNX="\e[3"$(hostname | md5sum | cut -c 1)"m"
|
|
||||||
#CNX="\e["$(hostname | od | tr ' ' '\n' | awk '{total = total + $1}END{print 30 + (total % 6)}')"m"
|
|
||||||
#CNX=${Green} # Connected on remote machine, via ssh (good).
|
|
||||||
elif [[ "${DISPLAY%%:0*}" != "" ]]; then
|
|
||||||
CNX=${ALERT} # Connected on remote machine, not via ssh (bad).
|
|
||||||
else
|
|
||||||
CNX=${BCyan} # Connected on local machine.
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Test user type:
|
|
||||||
if [[ ${USER} == "root" ]]; then
|
|
||||||
SU=${Red} # User is root.
|
|
||||||
elif [[ ${USER} != $(logname) ]]; then
|
|
||||||
SU=${BRed} # User is not login user.
|
|
||||||
else
|
|
||||||
SU=${BCyan} # User is normal (well ... most of us are).
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
NCPU=$(grep -c 'processor' /proc/cpuinfo) # Number of CPUs
|
|
||||||
SLOAD=$(( 100*${NCPU} )) # Small load
|
|
||||||
MLOAD=$(( 200*${NCPU} )) # Medium load
|
|
||||||
XLOAD=$(( 400*${NCPU} )) # Xlarge load
|
|
||||||
|
|
||||||
|
|
||||||
# Returns system load as percentage, i.e., '40' rather than '0.40)'.
|
|
||||||
function load()
|
|
||||||
{
|
|
||||||
local SYSLOAD=$(cut -d " " -f1 /proc/loadavg | tr -d '.')
|
|
||||||
# System load of the current host.
|
|
||||||
echo $((10#$SYSLOAD)) # Convert to decimal.
|
|
||||||
}
|
|
||||||
|
|
||||||
# Returns a color indicating system load.
|
|
||||||
function load_color()
|
|
||||||
{
|
|
||||||
local SYSLOAD=$(load)
|
|
||||||
if [ ${SYSLOAD} -gt ${XLOAD} ]; then
|
|
||||||
echo -en ${ALERT}
|
|
||||||
elif [ ${SYSLOAD} -gt ${MLOAD} ]; then
|
|
||||||
echo -en ${Red}
|
|
||||||
elif [ ${SYSLOAD} -gt ${SLOAD} ]; then
|
|
||||||
echo -en ${BRed}
|
|
||||||
else
|
|
||||||
echo -en ${Green}
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Returns a color according to free disk space in $PWD.
|
|
||||||
function disk_color()
|
|
||||||
{
|
|
||||||
if [ ! -w "${PWD}" ] ; then
|
|
||||||
echo -en ${Red}
|
|
||||||
# No 'write' privilege in the current directory.
|
|
||||||
elif [ -s "${PWD}" ] ; then
|
|
||||||
local used=$(command df -P "$PWD" |
|
|
||||||
awk 'END {print $5} {sub(/%/,"")}')
|
|
||||||
if [ ${used} -gt 95 ]; then
|
|
||||||
echo -en ${ALERT} # Disk almost full (>95%).
|
|
||||||
elif [ ${used} -gt 90 ]; then
|
|
||||||
echo -en ${BRed} # Free disk space almost gone.
|
|
||||||
else
|
|
||||||
echo -en ${Green} # Free disk space is ok.
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo -en ${Cyan}
|
|
||||||
# Current directory is size '0' (like /proc, /sys etc).
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Returns a color according to running/suspended jobs.
|
|
||||||
function job_color()
|
|
||||||
{
|
|
||||||
if [ $(jobs -s | wc -l) -gt "0" ]; then
|
|
||||||
echo -en ${BRed}
|
|
||||||
elif [ $(jobs -r | wc -l) -gt "0" ] ; then
|
|
||||||
echo -en ${BCyan}
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Adds some text in the terminal frame (if applicable).
|
|
||||||
|
|
||||||
|
|
||||||
# Now we construct the prompt.
|
|
||||||
PROMPT_COMMAND="history -a"
|
|
||||||
case ${TERM} in
|
|
||||||
*term | rxvt | linux)
|
|
||||||
PS1="\[\$(load_color)\][\A\[${NC}\] "
|
|
||||||
# Time of day (with load info):
|
|
||||||
PS1="\[\$(load_color)\][\A\[${NC}\] "
|
|
||||||
# User@Host (with connection type info):
|
|
||||||
PS1=${PS1}"\[${SU}\]\u\[${NC}\]@\[${CNX}\]\h\[${NC}\] "
|
|
||||||
# PWD (with 'disk space' info):
|
|
||||||
PS1=${PS1}"\[\$(disk_color)\]\W]\[${NC}\] "
|
|
||||||
# Prompt (with 'job' info):
|
|
||||||
PS1=${PS1}"\[\$(job_color)\]>\[${NC}\] "
|
|
||||||
# Set title of current xterm:
|
|
||||||
PS1=${PS1}"\[\e]0;[\u@\h] \w\a\]"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
PS1="(\A \u@\h \W) > " # --> PS1="(\A \u@\h \w) > "
|
|
||||||
# --> Shows full pathname of current dir.
|
|
||||||
;;
|
|
||||||
esac
|
|
2
bin/c
2
bin/c
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
echo "$@" | bc -l
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
_SERVER="https://paste.cresi.be"
|
|
||||||
a=$(cat);
|
|
||||||
curl -X POST -s -d "$a" ${_SERVER}/documents | awk -F '"' '{print "'${_SERVER}'/"$4}';
|
|
BIN
bin/homemaker.amd64
Executable file
BIN
bin/homemaker.amd64
Executable file
Binary file not shown.
BIN
bin/homemaker.arm
Executable file
BIN
bin/homemaker.arm
Executable file
Binary file not shown.
12
bin/initenv
12
bin/initenv
|
@ -1,12 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
for _FILE in .bashrc bin .vim .vimrc .zshrc
|
|
||||||
do
|
|
||||||
if [ ! -L $HOME/$_FILE ]; then
|
|
||||||
if [[ -f $HOME/$_FILE ]]; then
|
|
||||||
mv $HOME/$_FILE $HOME/$_FILE.bak
|
|
||||||
fi
|
|
||||||
ln -s "$HOME/dotfiles/$_FILE" "$HOME/$_FILE"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
rsync -av "$HOME/dotfiles/.config" "$HOME/.config"
|
|
11
bin/pass
11
bin/pass
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
if [ $# -eq 1 ]; then
|
|
||||||
LENGTH=$1
|
|
||||||
else
|
|
||||||
LENGTH=8
|
|
||||||
fi
|
|
||||||
cat /dev/urandom| tr -dc 'a-zA-Z0-9' | fold -w $LENGTH| head -n 1
|
|
||||||
cat /dev/urandom| tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?='|fold -w $LENGTH| head -n 1| grep -i '[!@#$%^&*()_+{}|:<>?=]'
|
|
||||||
pw=$(pwgen -Bs $LENGTH)
|
|
||||||
echo $pw " " $(openssl passwd -1 -salt $(pwgen -s 8 -1) $pw)
|
|
||||||
pw=123456
|
|
102
common.toml
Normal file
102
common.toml
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
###
|
||||||
|
### Macros
|
||||||
|
###
|
||||||
|
[macros.install__debian]
|
||||||
|
prefix = ["sudo", "apt-get", "install"]
|
||||||
|
|
||||||
|
[macros.install__work]
|
||||||
|
prefix = ["ovh-root", "install"]
|
||||||
|
|
||||||
|
[macros.install__arch]
|
||||||
|
prefix = ["sudo", "pacman", "-S"]
|
||||||
|
|
||||||
|
[macros.clone]
|
||||||
|
deps = ["git"]
|
||||||
|
prefix = ["git", "clone"]
|
||||||
|
|
||||||
|
[macros.go-get]
|
||||||
|
deps = ["golang"]
|
||||||
|
prefix = ["go", "get"]
|
||||||
|
|
||||||
|
[macros.npm-install]
|
||||||
|
deps = ["node"]
|
||||||
|
prefix = ["npm", "install", "-u"]
|
||||||
|
|
||||||
|
###
|
||||||
|
### Tasks
|
||||||
|
###
|
||||||
|
[tasks.htop]
|
||||||
|
links = [[".config/htop/htoprc", "config/htop"]]
|
||||||
|
# rejects = [["which", "htop"]]
|
||||||
|
cmds = [["@install", "htop"]]
|
||||||
|
|
||||||
|
[tasks.asciinema]
|
||||||
|
cmds = [["@install", "asciinema"]]
|
||||||
|
links = [[".config/asciinema/config", "config/asciinema"]]
|
||||||
|
|
||||||
|
[tasks.tmux]
|
||||||
|
links = [[".tmux.conf", "config/tmux"]]
|
||||||
|
# rejects = [["which", "tmux"]]
|
||||||
|
cmds = [["@install", "tmux"]]
|
||||||
|
|
||||||
|
[tasks.nano]
|
||||||
|
links = [[".nanorc", "config/nanorc"]]
|
||||||
|
|
||||||
|
[tasks.git]
|
||||||
|
cmds = [["@install", "git"]]
|
||||||
|
templates = [[".gitconfig", "config/gitconfig"]]
|
||||||
|
|
||||||
|
[tasks.zsh]
|
||||||
|
# rejects = [["which", "zsh"]]
|
||||||
|
cmds = [
|
||||||
|
["@install", "zsh"],
|
||||||
|
["@clone", "--depth=1" ,"https://github.com/robbyrussell/oh-my-zsh.git", ".oh-my-zsh"],
|
||||||
|
["chsh", "-s", "/bin/zsh"]
|
||||||
|
]
|
||||||
|
links = [
|
||||||
|
[".zshrc", "config/zshrc"],
|
||||||
|
["termite.terminfo", "config/termite.terminfo"]
|
||||||
|
]
|
||||||
|
|
||||||
|
[tasks.golang]
|
||||||
|
envs = [["GOPATH", "${HM_DEST}/projects/go"]]
|
||||||
|
cmds = [
|
||||||
|
["mkdir", "-p", "$GOPATH"],
|
||||||
|
["@install", "golang"]
|
||||||
|
]
|
||||||
|
|
||||||
|
[tasks.node]
|
||||||
|
cmds = [["@install", "nodejs", "npm"]]
|
||||||
|
|
||||||
|
[tasks.dev]
|
||||||
|
deps = ["git", "golang"]
|
||||||
|
cmds = [["@install",
|
||||||
|
"make",
|
||||||
|
"automake",
|
||||||
|
"gcc"
|
||||||
|
]]
|
||||||
|
[tasks.term]
|
||||||
|
cmds = [
|
||||||
|
["wget", "https://raw.githubusercontent.com/thestinger/termite/master/termite.terminfo"],
|
||||||
|
["tic", "-x", "termite.terminfo"]
|
||||||
|
]
|
||||||
|
|
||||||
|
[tasks.ssh]
|
||||||
|
templates = [
|
||||||
|
[".ssh/config", "config/ssh/config"]
|
||||||
|
]
|
||||||
|
|
||||||
|
[tasks.vim]
|
||||||
|
links = [
|
||||||
|
[".viminfo", "config/vim/viminfo"],
|
||||||
|
[".vimrc", "config/vim/vimrc"],
|
||||||
|
[".vim/autoload", "config/vim/autoload"],
|
||||||
|
[".vim/bundle", "config/vim/bundle"],
|
||||||
|
[".vim/colors", "config/vim/colors"],
|
||||||
|
]
|
||||||
|
|
||||||
|
###
|
||||||
|
### Run
|
||||||
|
###
|
||||||
|
[tasks.default]
|
||||||
|
deps = ["htop", "tmux", "git", "zsh", "dev", "vim", "golang", "ssh", "nano"]
|
34
config/asciinema
Normal file
34
config/asciinema
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[api]
|
||||||
|
; API server URL, default: https://asciinema.org
|
||||||
|
; If you run your own instance of asciinema-server then set its address here
|
||||||
|
; It can also be overriden by setting ASCIINEMA_API_URL environment variable
|
||||||
|
url = https://rec.edmund.ovh
|
||||||
|
|
||||||
|
[record]
|
||||||
|
; Command to record, default: $SHELL
|
||||||
|
command = /bin/zsh
|
||||||
|
|
||||||
|
; Enable stdin (keyboard) recording, default: no
|
||||||
|
stdin = yes
|
||||||
|
|
||||||
|
; List of environment variables to capture, default: SHELL,TERM
|
||||||
|
env = SHELL,TERM,USER
|
||||||
|
|
||||||
|
; Limit recorded terminal inactivity to max n seconds, default: off
|
||||||
|
idle_time_limit = 2
|
||||||
|
|
||||||
|
; Answer "yes" to all interactive prompts, default: no
|
||||||
|
; yes = yes
|
||||||
|
|
||||||
|
; Be quiet, suppress all notices/warnings, default: no
|
||||||
|
; quiet = true
|
||||||
|
|
||||||
|
[play]
|
||||||
|
; Playback speed (can be fractional), default: 1
|
||||||
|
speed = 2
|
||||||
|
; Limit replayed terminal inactivity to max n seconds, default: off
|
||||||
|
idle_time_limit = 1
|
||||||
|
A very minimal config file could look like that:
|
||||||
|
|
||||||
|
[record]
|
||||||
|
idle_time_limit = 2
|
19
config/gitconfig
Normal file
19
config/gitconfig
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
[user]
|
||||||
|
{{if eq .Env.USER "qgodefro"}}
|
||||||
|
name = "Quentin Godefroid"
|
||||||
|
email = "quentin.godefroid@corp.ovh.com"
|
||||||
|
{{else if eq .Env.USER "quentin"}}
|
||||||
|
name = "Quentin Godefroid"
|
||||||
|
email = "quentin.git@godefroid.eu"
|
||||||
|
{{else if eq .Env.USER "hactar"}}
|
||||||
|
name = "Hactarus"
|
||||||
|
email = "hactarus.git@cresi.be"
|
||||||
|
{{else}}
|
||||||
|
name = "Hactarus"
|
||||||
|
email = "hactarus.git@cresi.be"
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
[alias]
|
||||||
|
pushdev = !git push --set-upstream origin "`git branch --no-color 2>/dev/null | grep '*' | sed -e 's/\\* //'`:dev/{{ .Env.USER }}/`git branch --no-color 2>/dev/null | grep '*' | sed -e 's/\\* //'`"
|
||||||
|
[push]
|
||||||
|
default = simple
|
26
config/htop
Normal file
26
config/htop
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
||||||
|
# The parser is also very primitive, and not human-friendly.
|
||||||
|
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
||||||
|
sort_key=46
|
||||||
|
sort_direction=1
|
||||||
|
hide_threads=0
|
||||||
|
hide_kernel_threads=1
|
||||||
|
hide_userland_threads=0
|
||||||
|
shadow_other_users=0
|
||||||
|
show_thread_names=0
|
||||||
|
highlight_base_name=0
|
||||||
|
highlight_megabytes=1
|
||||||
|
highlight_threads=0
|
||||||
|
tree_view=0
|
||||||
|
header_margin=1
|
||||||
|
detailed_cpu_time=0
|
||||||
|
cpu_count_from_zero=0
|
||||||
|
update_process_names=0
|
||||||
|
account_guest_in_cpu_meter=0
|
||||||
|
color_scheme=0
|
||||||
|
delay=15
|
||||||
|
left_meters=LeftCPUs Memory Swap
|
||||||
|
left_meter_modes=1 1 1
|
||||||
|
right_meters=RightCPUs Tasks LoadAverage Uptime
|
||||||
|
right_meter_modes=1 2 2 2
|
||||||
|
|
67
config/nanorc
Normal file
67
config/nanorc
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
# set quiet
|
||||||
|
# set atblanks
|
||||||
|
# set autoindent
|
||||||
|
# set backup
|
||||||
|
set backupdir "~/.cache/nano/"
|
||||||
|
# set backwards
|
||||||
|
# set boldtext
|
||||||
|
set brackets ""')>]}"
|
||||||
|
# set casesensitive
|
||||||
|
set constantshow
|
||||||
|
# set cutfromcursor
|
||||||
|
# set fill -4
|
||||||
|
# set historylog
|
||||||
|
# set justifytrim
|
||||||
|
# set linenumbers
|
||||||
|
# set locking
|
||||||
|
set matchbrackets "(<[{)>]}"
|
||||||
|
# set morespace
|
||||||
|
# set mouse
|
||||||
|
# set multibuffer
|
||||||
|
# set noconvert
|
||||||
|
# set nohelp
|
||||||
|
# set nopauses
|
||||||
|
set nonewlines
|
||||||
|
# set nowrap
|
||||||
|
# set operatingdir ""
|
||||||
|
# set positionlog
|
||||||
|
# set preserve
|
||||||
|
set punct "!.?"
|
||||||
|
# set quickblank
|
||||||
|
# set quotestr "^([ ]*[#:>\|}])+"
|
||||||
|
# set quotestr "> "
|
||||||
|
# set rebinddelete
|
||||||
|
# set rebindkeypad
|
||||||
|
# set regexp
|
||||||
|
# set showcursor
|
||||||
|
# set smarthome
|
||||||
|
# set smooth
|
||||||
|
# set softwrap
|
||||||
|
# set speller "aspell -x -c"
|
||||||
|
# set suspend
|
||||||
|
set tabsize 4
|
||||||
|
# set tabstospaces
|
||||||
|
# set tempfile
|
||||||
|
# set view
|
||||||
|
# set whitespace "»·"
|
||||||
|
# set whitespace ">."
|
||||||
|
# set wordbounds
|
||||||
|
# set wordchars "<_>."
|
||||||
|
set titlecolor brightwhite,blue
|
||||||
|
set statuscolor brightwhite,green
|
||||||
|
#set selectedcolor brightwhite,magenta
|
||||||
|
#set numbercolor cyan
|
||||||
|
set keycolor cyan
|
||||||
|
set functioncolor green
|
||||||
|
set titlecolor brightwhite,red
|
||||||
|
set statuscolor brightwhite,red
|
||||||
|
#set selectedcolor brightwhite,cyan
|
||||||
|
#set numbercolor magenta
|
||||||
|
# set keycolor brightmagenta
|
||||||
|
# set functioncolor magenta
|
||||||
|
include "/usr/share/nano/*.nanorc"
|
||||||
|
# bind ^S savefile main
|
||||||
|
# bind M-B cutwordleft main
|
||||||
|
# bind M-N cutwordright main
|
||||||
|
# bind Del backspace all
|
||||||
|
set nonewlines
|
103
config/ssh/config
Normal file
103
config/ssh/config
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
|
||||||
|
#Host *.reseller.mis.ovh.net
|
||||||
|
# ProxyCommand ssh -F ~/.ssh/config z3 -t -- root@%h -p %p
|
||||||
|
|
||||||
|
#Host *.ovh.net
|
||||||
|
# ControlMaster auto
|
||||||
|
# ControlPath ~/.ssh/mux-%r@%h:%p
|
||||||
|
# ControlPersist 15m
|
||||||
|
|
||||||
|
# Work
|
||||||
|
|
||||||
|
Host *.ovh.net
|
||||||
|
User qgodefro
|
||||||
|
Port 22
|
||||||
|
IdentityFile ~/work_201806
|
||||||
|
|
||||||
|
Host 213.186.33.88
|
||||||
|
Hostname 213.186.33.88
|
||||||
|
User qgodefro
|
||||||
|
Port 22
|
||||||
|
IdentityFile /home/qgodefro/.ssh/ovh_sdev
|
||||||
|
|
||||||
|
Host avimbo
|
||||||
|
Hostname sshcloud.cluster024.hosting.ovh.net
|
||||||
|
Port 41045
|
||||||
|
User avimboo
|
||||||
|
IdentityFile ~/.ssh/hosting
|
||||||
|
|
||||||
|
Host stash.ovh.net
|
||||||
|
User git
|
||||||
|
Hostname stash.ovh.net
|
||||||
|
Port 7999
|
||||||
|
IdentityFile /home/qgodefro/.ssh/desk
|
||||||
|
|
||||||
|
Host qgodefro1
|
||||||
|
User debian
|
||||||
|
Hostname qgodefro1.rungs.ovh
|
||||||
|
Port 22
|
||||||
|
IdentityFile /home/qgodefro/.ssh/desk
|
||||||
|
|
||||||
|
Host meltingpot
|
||||||
|
User gs
|
||||||
|
Hostname mozg-meltingpot.ovh.ha.ovh.net
|
||||||
|
|
||||||
|
# VM
|
||||||
|
|
||||||
|
Host davros
|
||||||
|
User hactar
|
||||||
|
Hostname davros.ovh
|
||||||
|
Port 16843
|
||||||
|
IdentityFile ~/.ssh/davros
|
||||||
|
|
||||||
|
Host ansible
|
||||||
|
Hostname node87222.ood.ovh
|
||||||
|
Port 16843
|
||||||
|
User arch
|
||||||
|
|
||||||
|
Host git.edmund.ovh
|
||||||
|
User git
|
||||||
|
Hostname git.edmund.ovh
|
||||||
|
Port 22
|
||||||
|
IdentityFile /home/qgodefro/.ssh/desk
|
||||||
|
|
||||||
|
# Friends
|
||||||
|
|
||||||
|
Host namek.fr
|
||||||
|
User hactarus
|
||||||
|
Port 2799
|
||||||
|
IdentityFile ~/.ssh/thomas_b_series
|
||||||
|
|
||||||
|
Host beta
|
||||||
|
User root
|
||||||
|
Port 22
|
||||||
|
Hostname beta.namek.fr
|
||||||
|
IdentityFile ~/.ssh/auberge
|
||||||
|
|
||||||
|
Host mrboogie
|
||||||
|
User quentin
|
||||||
|
Hostname docki.bobobby.com
|
||||||
|
IdentityFile /home/qgodefro/.ssh/auberge
|
||||||
|
Port 1492
|
||||||
|
|
||||||
|
Host moker
|
||||||
|
User quentin
|
||||||
|
Port 1122
|
||||||
|
IdentityFile ~/.ssh/auberge
|
||||||
|
Hostname moker.fr
|
||||||
|
|
||||||
|
Host dev.bobobby.com
|
||||||
|
User git
|
||||||
|
Hostname dev.bobobby.com
|
||||||
|
IdentityFile ~/.ssh/auberge
|
||||||
|
|
||||||
|
# Cluster
|
||||||
|
|
||||||
|
Host node*
|
||||||
|
User root
|
||||||
|
Port 16843
|
||||||
|
IdentityFile ~/.ssh/ed25519
|
||||||
|
|
||||||
|
Host *.techwars.ovh
|
||||||
|
User debian
|
||||||
|
IdentityFile ~/.ssh/auberge
|
191
config/termite.terminfo
Normal file
191
config/termite.terminfo
Normal file
|
@ -0,0 +1,191 @@
|
||||||
|
# vim: noet:ts=8:sw=8:sts=0
|
||||||
|
xterm-termite|VTE-based terminal,
|
||||||
|
am,
|
||||||
|
bce,
|
||||||
|
ccc,
|
||||||
|
km,
|
||||||
|
mc5i,
|
||||||
|
mir,
|
||||||
|
msgr,
|
||||||
|
npc,
|
||||||
|
xenl,
|
||||||
|
colors#256,
|
||||||
|
cols#80,
|
||||||
|
it#8,
|
||||||
|
lines#24,
|
||||||
|
pairs#32767,
|
||||||
|
U8#1,
|
||||||
|
acsc=++\,\,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~,
|
||||||
|
bel=^G,
|
||||||
|
bold=\E[1m,
|
||||||
|
cbt=\E[Z,
|
||||||
|
civis=\E[?25l,
|
||||||
|
clear=\E[H\E[2J,
|
||||||
|
cnorm=\E[?12l\E[?25h,
|
||||||
|
cr=^M,
|
||||||
|
csr=\E[%i%p1%d;%p2%dr,
|
||||||
|
cub=\E[%p1%dD,
|
||||||
|
cub1=^H,
|
||||||
|
cud=\E[%p1%dB,
|
||||||
|
cud1=^J,
|
||||||
|
cuf=\E[%p1%dC,
|
||||||
|
cuf1=\E[C,
|
||||||
|
cup=\E[%i%p1%d;%p2%dH,
|
||||||
|
cuu=\E[%p1%dA,
|
||||||
|
cuu1=\E[A,
|
||||||
|
cvvis=\E[?12;25h,
|
||||||
|
dch=\E[%p1%dP,
|
||||||
|
dch1=\E[P,
|
||||||
|
dim=\E[2m,
|
||||||
|
dl=\E[%p1%dM,
|
||||||
|
dl1=\E[M,
|
||||||
|
ech=\E[%p1%dX,
|
||||||
|
ed=\E[J,
|
||||||
|
el=\E[K,
|
||||||
|
el1=\E[1K,
|
||||||
|
flash=\E[?5h$<100/>\E[?5l,
|
||||||
|
home=\E[H,
|
||||||
|
hpa=\E[%i%p1%dG,
|
||||||
|
ht=^I,
|
||||||
|
hts=\EH,
|
||||||
|
ich=\E[%p1%d@,
|
||||||
|
il=\E[%p1%dL,
|
||||||
|
il1=\E[L,
|
||||||
|
ind=^J,
|
||||||
|
indn=\E[%p1%dS,
|
||||||
|
initc=\E]4;%p1%d;rgb\:%p2%{255}%*%{1000}%/%2.2X/%p3%{255}%*%{1000}%/%2.2X/%p4%{255}%*%{1000}%/%2.2X\E\\,
|
||||||
|
invis=\E[8m,
|
||||||
|
is2=\E[!p\E[?3;4l\E[4l\E>,
|
||||||
|
kDC=\E[3;2~,
|
||||||
|
kEND=\E[1;2F,
|
||||||
|
kHOM=\E[1;2H,
|
||||||
|
kIC=\E[2;2~,
|
||||||
|
kLFT=\E[1;2D,
|
||||||
|
kNXT=\E[6;2~,
|
||||||
|
kPRV=\E[5;2~,
|
||||||
|
kRIT=\E[1;2C,
|
||||||
|
kb2=\EOE,
|
||||||
|
kbs=\177,
|
||||||
|
kcbt=\E[Z,
|
||||||
|
kcub1=\EOD,
|
||||||
|
kcud1=\EOB,
|
||||||
|
kcuf1=\EOC,
|
||||||
|
kcuu1=\EOA,
|
||||||
|
kdch1=\E[3~,
|
||||||
|
kend=\EOF,
|
||||||
|
kent=\EOM,
|
||||||
|
kf1=\EOP,
|
||||||
|
kf10=\E[21~,
|
||||||
|
kf11=\E[23~,
|
||||||
|
kf12=\E[24~,
|
||||||
|
kf13=\E[1;2P,
|
||||||
|
kf14=\E[1;2Q,
|
||||||
|
kf15=\E[1;2R,
|
||||||
|
kf16=\E[1;2S,
|
||||||
|
kf17=\E[15;2~,
|
||||||
|
kf18=\E[17;2~,
|
||||||
|
kf19=\E[18;2~,
|
||||||
|
kf2=\EOQ,
|
||||||
|
kf20=\E[19;2~,
|
||||||
|
kf21=\E[20;2~,
|
||||||
|
kf22=\E[21;2~,
|
||||||
|
kf23=\E[23;2~,
|
||||||
|
kf24=\E[24;2~,
|
||||||
|
kf25=\E[1;5P,
|
||||||
|
kf26=\E[1;5Q,
|
||||||
|
kf27=\E[1;5R,
|
||||||
|
kf28=\E[1;5S,
|
||||||
|
kf29=\E[15;5~,
|
||||||
|
kf3=\EOR,
|
||||||
|
kf30=\E[17;5~,
|
||||||
|
kf31=\E[18;5~,
|
||||||
|
kf32=\E[19;5~,
|
||||||
|
kf33=\E[20;5~,
|
||||||
|
kf34=\E[21;5~,
|
||||||
|
kf35=\E[23;5~,
|
||||||
|
kf36=\E[24;5~,
|
||||||
|
kf37=\E[1;6P,
|
||||||
|
kf38=\E[1;6Q,
|
||||||
|
kf39=\E[1;6R,
|
||||||
|
kf4=\EOS,
|
||||||
|
kf40=\E[1;6S,
|
||||||
|
kf41=\E[15;6~,
|
||||||
|
kf42=\E[17;6~,
|
||||||
|
kf43=\E[18;6~,
|
||||||
|
kf44=\E[19;6~,
|
||||||
|
kf45=\E[20;6~,
|
||||||
|
kf46=\E[21;6~,
|
||||||
|
kf47=\E[23;6~,
|
||||||
|
kf48=\E[24;6~,
|
||||||
|
kf49=\E[1;3P,
|
||||||
|
kf5=\E[15~,
|
||||||
|
kf50=\E[1;3Q,
|
||||||
|
kf51=\E[1;3R,
|
||||||
|
kf52=\E[1;3S,
|
||||||
|
kf53=\E[15;3~,
|
||||||
|
kf54=\E[17;3~,
|
||||||
|
kf55=\E[18;3~,
|
||||||
|
kf56=\E[19;3~,
|
||||||
|
kf57=\E[20;3~,
|
||||||
|
kf58=\E[21;3~,
|
||||||
|
kf59=\E[23;3~,
|
||||||
|
kf6=\E[17~,
|
||||||
|
kf60=\E[24;3~,
|
||||||
|
kf61=\E[1;4P,
|
||||||
|
kf62=\E[1;4Q,
|
||||||
|
kf63=\E[1;4R,
|
||||||
|
kf7=\E[18~,
|
||||||
|
kf8=\E[19~,
|
||||||
|
kf9=\E[20~,
|
||||||
|
khome=\EOH,
|
||||||
|
kich1=\E[2~,
|
||||||
|
kind=\E[1;2B,
|
||||||
|
kmous=\E[M,
|
||||||
|
knp=\E[6~,
|
||||||
|
kpp=\E[5~,
|
||||||
|
kri=\E[1;2A,
|
||||||
|
mc0=\E[i,
|
||||||
|
mc4=\E[4i,
|
||||||
|
mc5=\E[5i,
|
||||||
|
meml=\El,
|
||||||
|
memu=\Em,
|
||||||
|
op=\E[39;49m,
|
||||||
|
rc=\E8,
|
||||||
|
rev=\E[7m,
|
||||||
|
ri=\EM,
|
||||||
|
rin=\E[%p1%dT,
|
||||||
|
rmacs=\E(B,
|
||||||
|
rmam=\E[?7l,
|
||||||
|
rmcup=\E[?1049l,
|
||||||
|
rmir=\E[4l,
|
||||||
|
rmkx=\E[?1l\E>,
|
||||||
|
rmm=\E[?1034l,
|
||||||
|
rmso=\E[27m,
|
||||||
|
rmul=\E[24m,
|
||||||
|
rs1=\Ec,
|
||||||
|
rs2=\E[!p\E[?3;4l\E[4l\E>,
|
||||||
|
sc=\E7,
|
||||||
|
setab=\E[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m,
|
||||||
|
setaf=\E[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m,
|
||||||
|
sgr=%?%p9%t\E(0%e\E(B%;\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m,
|
||||||
|
sgr0=\E(B\E[m,
|
||||||
|
smacs=\E(0,
|
||||||
|
smam=\E[?7h,
|
||||||
|
smcup=\E[?1049h,
|
||||||
|
smir=\E[4h,
|
||||||
|
smkx=\E[?1h\E=,
|
||||||
|
smm=\E[?1034h,
|
||||||
|
smso=\E[7m,
|
||||||
|
smul=\E[4m,
|
||||||
|
tbc=\E[3g,
|
||||||
|
u6=\E[%i%d;%dR,
|
||||||
|
u7=\E[6n,
|
||||||
|
u8=\E[?1;2c,
|
||||||
|
u9=\E[c,
|
||||||
|
vpa=\E[%i%p1%dd,
|
||||||
|
hs,
|
||||||
|
tsl=\E]2;,
|
||||||
|
fsl=^G,
|
||||||
|
dsl=\E]2;\007,
|
||||||
|
sitm=\E[3m,
|
||||||
|
ritm=\E[23m,
|
117
config/tmux
Normal file
117
config/tmux
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
# https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf
|
||||||
|
set-option -g status-bg colour235 #base02
|
||||||
|
set-option -g status-fg colour136 #yellow
|
||||||
|
set-option -g status-attr default
|
||||||
|
|
||||||
|
# set window split
|
||||||
|
bind-key v split-window -h
|
||||||
|
bind-key b split-window
|
||||||
|
|
||||||
|
# default window title colors
|
||||||
|
set-window-option -g window-status-fg colour244 #base0
|
||||||
|
set-window-option -g window-status-bg default
|
||||||
|
#set-window-option -g window-status-attr dim
|
||||||
|
|
||||||
|
# active window title colors
|
||||||
|
set-window-option -g window-status-current-fg colour166 #orange
|
||||||
|
set-window-option -g window-status-current-bg default
|
||||||
|
#set-window-option -g window-status-current-attr bright
|
||||||
|
|
||||||
|
# pane border
|
||||||
|
set-option -g pane-border-fg colour235 #base02
|
||||||
|
set-option -g pane-active-border-fg colour240 #base01
|
||||||
|
|
||||||
|
# message text
|
||||||
|
set-option -g message-bg colour235 #base02
|
||||||
|
set-option -g message-fg colour166 #orange
|
||||||
|
|
||||||
|
# pane number display
|
||||||
|
set-option -g display-panes-active-colour colour33 #blue
|
||||||
|
set-option -g display-panes-colour colour166 #orange
|
||||||
|
# clock
|
||||||
|
set-window-option -g clock-mode-colour green #green
|
||||||
|
|
||||||
|
|
||||||
|
set -g status-interval 1
|
||||||
|
set -g status-justify centre # center align window list
|
||||||
|
set -g status-left-length 20
|
||||||
|
set -g status-right-length 140
|
||||||
|
set -g status-left '#[fg=green]#H #[fg=black]• #[fg=green,bright]#(uname -r | cut -c 1-6)#[default]'
|
||||||
|
set -g status-right '#[fg=green,bg=default,bright]#(tmux-mem-cpu-load) #[fg=red,dim,bg=default]#(uptime | cut -f 4-5 -d " " | cut -f 1 -d ",") #[fg=white,bg=default]%a%l:%M:%S %p#[default] #[fg=blue]%Y-%m-%d'
|
||||||
|
|
||||||
|
# C-b is not acceptable -- Vim uses it
|
||||||
|
set-option -g prefix C-a
|
||||||
|
bind-key C-a last-window
|
||||||
|
|
||||||
|
# Start numbering at 1
|
||||||
|
set -g base-index 1
|
||||||
|
|
||||||
|
# Allows for faster key repetition
|
||||||
|
set -s escape-time 0
|
||||||
|
|
||||||
|
# Rather than constraining window size to the maximum size of any client
|
||||||
|
# connected to the *session*, constrain window size to the maximum size of any
|
||||||
|
# client connected to *that window*. Much more reasonable.
|
||||||
|
setw -g aggressive-resize on
|
||||||
|
|
||||||
|
# Allows us to use C-a a <command> to send commands to a TMUX session inside
|
||||||
|
# another TMUX session
|
||||||
|
bind-key a send-prefix
|
||||||
|
|
||||||
|
# Activity monitoring
|
||||||
|
setw -g monitor-activity on
|
||||||
|
set -g visual-activity on
|
||||||
|
|
||||||
|
# hjkl pane traversal
|
||||||
|
bind h select-pane -L
|
||||||
|
bind j select-pane -D
|
||||||
|
bind k select-pane -U
|
||||||
|
bind l select-pane -R
|
||||||
|
|
||||||
|
# set to main-horizontal, 66% height for main pane
|
||||||
|
bind m run-shell "~/.tmux/scripts/resize-adaptable.sh -l main-horizontal -p 66"
|
||||||
|
# Same thing for verical layouts
|
||||||
|
bind M run-shell "~/.tmux/scripts/resize-adaptable.sh -l main-vertical -p 50"
|
||||||
|
|
||||||
|
bind-key C command-prompt -p "Name of new window: " "new-window -n '%%'"
|
||||||
|
|
||||||
|
# reload config
|
||||||
|
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
|
||||||
|
|
||||||
|
# auto window rename
|
||||||
|
set-window-option -g automatic-rename
|
||||||
|
|
||||||
|
# color
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
|
# https://github.com/edkolev/dots/blob/master/tmux.conf
|
||||||
|
# Updates for tmux 1.9's current pane splitting paths.
|
||||||
|
|
||||||
|
# from powerline
|
||||||
|
run-shell "tmux set-environment -g TMUX_VERSION_MAJOR $(tmux -V | cut -d' ' -f2 | cut -d'.' -f1 | sed 's/[^0-9]*//g')"
|
||||||
|
run-shell "tmux set-environment -g TMUX_VERSION_MINOR $(tmux -V | cut -d' ' -f2 | cut -d'.' -f2 | sed 's/[^0-9]*//g')"
|
||||||
|
|
||||||
|
# Vi copypaste mode
|
||||||
|
set-window-option -g mode-keys vi
|
||||||
|
if-shell "test '\( #{$TMUX_VERSION_MAJOR} -eq 2 -a #{$TMUX_VERSION_MINOR} -ge 4 \)'" 'bind-key -Tcopy-mode-vi v send -X begin-selection; bind-key -Tcopy-mode-vi y send -X copy-selection-and-cancel'
|
||||||
|
if-shell '\( #{$TMUX_VERSION_MAJOR} -eq 2 -a #{$TMUX_VERSION_MINOR} -lt 4\) -o #{$TMUX_VERSION_MAJOR} -le 1' 'bind-key -t vi-copy v begin-selection; bind-key -t vi-copy y copy-selection'
|
||||||
|
|
||||||
|
# status bar
|
||||||
|
if-shell '\( #{$TMUX_VERSION_MAJOR} -eq 2 -a #{$TMUX_VERSION_MINOR} -lt 2\) -o #{$TMUX_VERSION_MAJOR} -le 1' 'set-option -g status-utf8 on'
|
||||||
|
|
||||||
|
# rm mouse mode fail
|
||||||
|
if-shell '\( #{$TMUX_VERSION_MAJOR} -eq 2 -a #{$TMUX_VERSION_MINOR} -ge 1\)' 'set -g mouse off'
|
||||||
|
if-shell '\( #{$TMUX_VERSION_MAJOR} -eq 2 -a #{$TMUX_VERSION_MINOR} -lt 1\) -o #{$TMUX_VERSION_MAJOR} -le 1' 'set -g mode-mouse off'
|
||||||
|
|
||||||
|
# fix pane_current_path on new window and splits
|
||||||
|
if-shell "test '#{$TMUX_VERSION_MAJOR} -gt 1 -o \( #{$TMUX_VERSION_MAJOR} -eq 1 -a #{$TMUX_VERSION_MINOR} -ge 8 \)'" 'unbind c; bind c new-window -c "#{pane_current_path}"'
|
||||||
|
if-shell "test '#{$TMUX_VERSION_MAJOR} -gt 1 -o \( #{$TMUX_VERSION_MAJOR} -eq 1 -a #{$TMUX_VERSION_MINOR} -ge 8 \)'" "unbind '\"'; bind '\"' split-window -v -c '#{pane_current_path}'"
|
||||||
|
if-shell "test '#{$TMUX_VERSION_MAJOR} -gt 1 -o \( #{$TMUX_VERSION_MAJOR} -eq 1 -a #{$TMUX_VERSION_MINOR} -ge 8 \)'" 'unbind v; bind v split-window -h -c "#{pane_current_path}"'
|
||||||
|
if-shell "test '#{$TMUX_VERSION_MAJOR} -gt 1 -o \( #{$TMUX_VERSION_MAJOR} -eq 1 -a #{$TMUX_VERSION_MINOR} -ge 8 \)'" 'unbind %; bind % split-window -h -c "#{pane_current_path}"'
|
||||||
|
|
||||||
|
set -g history-limit 90000
|
||||||
|
set -g alternate-screen on
|
||||||
|
|
||||||
|
set -g mouse-utf8 on
|
||||||
|
set -g mouse on
|
||||||
|
set-option -g set-titles on
|
326
config/vim/autoload/pathogen.vim
Executable file
326
config/vim/autoload/pathogen.vim
Executable file
|
@ -0,0 +1,326 @@
|
||||||
|
" pathogen.vim - path option manipulation
|
||||||
|
" Maintainer: Tim Pope <http://tpo.pe/>
|
||||||
|
" Version: 2.2
|
||||||
|
|
||||||
|
" Install in ~/.vim/autoload (or ~\vimfiles\autoload).
|
||||||
|
"
|
||||||
|
" For management of individually installed plugins in ~/.vim/bundle (or
|
||||||
|
" ~\vimfiles\bundle), adding `execute pathogen#infect()` to the top of your
|
||||||
|
" .vimrc is the only other setup necessary.
|
||||||
|
"
|
||||||
|
" The API is documented inline below. For maximum ease of reading,
|
||||||
|
" :set foldmethod=marker
|
||||||
|
|
||||||
|
if exists("g:loaded_pathogen") || &cp
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let g:loaded_pathogen = 1
|
||||||
|
|
||||||
|
function! s:warn(msg)
|
||||||
|
echohl WarningMsg
|
||||||
|
echomsg a:msg
|
||||||
|
echohl NONE
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
" Point of entry for basic default usage. Give a relative path to invoke
|
||||||
|
" pathogen#incubate() (defaults to "bundle/{}"), or an absolute path to invoke
|
||||||
|
" pathogen#surround(). For backwards compatibility purposes, a full path that
|
||||||
|
" does not end in {} or * is given to pathogen#runtime_prepend_subdirectories()
|
||||||
|
" instead.
|
||||||
|
function! pathogen#infect(...) abort " {{{1
|
||||||
|
for path in a:0 ? reverse(copy(a:000)) : ['bundle/{}']
|
||||||
|
if path =~# '^[^\\/]\+$'
|
||||||
|
call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')')
|
||||||
|
call pathogen#incubate(path . '/{}')
|
||||||
|
elseif path =~# '^[^\\/]\+[\\/]\%({}\|\*\)$'
|
||||||
|
call pathogen#incubate(path)
|
||||||
|
elseif path =~# '[\\/]\%({}\|\*\)$'
|
||||||
|
call pathogen#surround(path)
|
||||||
|
else
|
||||||
|
call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')')
|
||||||
|
call pathogen#surround(path . '/{}')
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
call pathogen#cycle_filetype()
|
||||||
|
return ''
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Split a path into a list.
|
||||||
|
function! pathogen#split(path) abort " {{{1
|
||||||
|
if type(a:path) == type([]) | return a:path | endif
|
||||||
|
let split = split(a:path,'\\\@<!\%(\\\\\)*\zs,')
|
||||||
|
return map(split,'substitute(v:val,''\\\([\\,]\)'',''\1'',"g")')
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Convert a list to a path.
|
||||||
|
function! pathogen#join(...) abort " {{{1
|
||||||
|
if type(a:1) == type(1) && a:1
|
||||||
|
let i = 1
|
||||||
|
let space = ' '
|
||||||
|
else
|
||||||
|
let i = 0
|
||||||
|
let space = ''
|
||||||
|
endif
|
||||||
|
let path = ""
|
||||||
|
while i < a:0
|
||||||
|
if type(a:000[i]) == type([])
|
||||||
|
let list = a:000[i]
|
||||||
|
let j = 0
|
||||||
|
while j < len(list)
|
||||||
|
let escaped = substitute(list[j],'[,'.space.']\|\\[\,'.space.']\@=','\\&','g')
|
||||||
|
let path .= ',' . escaped
|
||||||
|
let j += 1
|
||||||
|
endwhile
|
||||||
|
else
|
||||||
|
let path .= "," . a:000[i]
|
||||||
|
endif
|
||||||
|
let i += 1
|
||||||
|
endwhile
|
||||||
|
return substitute(path,'^,','','')
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Convert a list to a path with escaped spaces for 'path', 'tag', etc.
|
||||||
|
function! pathogen#legacyjoin(...) abort " {{{1
|
||||||
|
return call('pathogen#join',[1] + a:000)
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Remove duplicates from a list.
|
||||||
|
function! pathogen#uniq(list) abort " {{{1
|
||||||
|
let i = 0
|
||||||
|
let seen = {}
|
||||||
|
while i < len(a:list)
|
||||||
|
if (a:list[i] ==# '' && exists('empty')) || has_key(seen,a:list[i])
|
||||||
|
call remove(a:list,i)
|
||||||
|
elseif a:list[i] ==# ''
|
||||||
|
let i += 1
|
||||||
|
let empty = 1
|
||||||
|
else
|
||||||
|
let seen[a:list[i]] = 1
|
||||||
|
let i += 1
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
return a:list
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" \ on Windows unless shellslash is set, / everywhere else.
|
||||||
|
function! pathogen#separator() abort " {{{1
|
||||||
|
return !exists("+shellslash") || &shellslash ? '/' : '\'
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Convenience wrapper around glob() which returns a list.
|
||||||
|
function! pathogen#glob(pattern) abort " {{{1
|
||||||
|
let files = split(glob(a:pattern),"\n")
|
||||||
|
return map(files,'substitute(v:val,"[".pathogen#separator()."/]$","","")')
|
||||||
|
endfunction "}}}1
|
||||||
|
|
||||||
|
" Like pathogen#glob(), only limit the results to directories.
|
||||||
|
function! pathogen#glob_directories(pattern) abort " {{{1
|
||||||
|
return filter(pathogen#glob(a:pattern),'isdirectory(v:val)')
|
||||||
|
endfunction "}}}1
|
||||||
|
|
||||||
|
" Turn filetype detection off and back on again if it was already enabled.
|
||||||
|
function! pathogen#cycle_filetype() " {{{1
|
||||||
|
if exists('g:did_load_filetypes')
|
||||||
|
filetype off
|
||||||
|
filetype on
|
||||||
|
endif
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Check if a bundle is disabled. A bundle is considered disabled if it ends
|
||||||
|
" in a tilde or its basename or full name is included in the list
|
||||||
|
" g:pathogen_disabled.
|
||||||
|
function! pathogen#is_disabled(path) " {{{1
|
||||||
|
if a:path =~# '\~$'
|
||||||
|
return 1
|
||||||
|
elseif !exists("g:pathogen_disabled")
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
let sep = pathogen#separator()
|
||||||
|
let blacklist = g:pathogen_disabled
|
||||||
|
return index(blacklist, strpart(a:path, strridx(a:path, sep)+1)) != -1 && index(blacklist, a:path) != 1
|
||||||
|
endfunction "}}}1
|
||||||
|
|
||||||
|
" Prepend the given directory to the runtime path and append its corresponding
|
||||||
|
" after directory. If the directory is already included, move it to the
|
||||||
|
" outermost position. Wildcards are added as is. Ending a path in /{} causes
|
||||||
|
" all subdirectories to be added (except those in g:pathogen_disabled).
|
||||||
|
function! pathogen#surround(path) abort " {{{1
|
||||||
|
let sep = pathogen#separator()
|
||||||
|
let rtp = pathogen#split(&rtp)
|
||||||
|
if a:path =~# '[\\/]{}$'
|
||||||
|
let path = fnamemodify(a:path[0:-4], ':p:s?[\\/]\=$??')
|
||||||
|
let before = filter(pathogen#glob_directories(path.sep.'*'), '!pathogen#is_disabled(v:val)')
|
||||||
|
let after = filter(reverse(pathogen#glob_directories(path.sep."*".sep."after")), '!pathogen#is_disabled(v:val[0:-7])')
|
||||||
|
call filter(rtp,'v:val[0:strlen(path)-1] !=# path')
|
||||||
|
else
|
||||||
|
let path = fnamemodify(a:path, ':p:s?[\\/]\=$??')
|
||||||
|
let before = [path]
|
||||||
|
let after = [path . sep . 'after']
|
||||||
|
call filter(rtp, 'index(before + after, v:val) == -1')
|
||||||
|
endif
|
||||||
|
let &rtp = pathogen#join(before, rtp, after)
|
||||||
|
return &rtp
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Prepend all subdirectories of path to the rtp, and append all 'after'
|
||||||
|
" directories in those subdirectories. Deprecated.
|
||||||
|
function! pathogen#runtime_prepend_subdirectories(path) " {{{1
|
||||||
|
call s:warn('Change pathogen#runtime_prepend_subdirectories('.string(a:path).') to pathogen#surround('.string(a:path.'/{}').')')
|
||||||
|
return pathogen#surround(a:path . pathogen#separator() . '{}')
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" For each directory in the runtime path, add a second entry with the given
|
||||||
|
" argument appended. If the argument ends in '/{}', add a separate entry for
|
||||||
|
" each subdirectory. The default argument is 'bundle/{}', which means that
|
||||||
|
" .vim/bundle/*, $VIM/vimfiles/bundle/*, $VIMRUNTIME/bundle/*,
|
||||||
|
" $VIM/vim/files/bundle/*/after, and .vim/bundle/*/after will be added (on
|
||||||
|
" UNIX).
|
||||||
|
function! pathogen#incubate(...) abort " {{{1
|
||||||
|
let sep = pathogen#separator()
|
||||||
|
let name = a:0 ? a:1 : 'bundle/{}'
|
||||||
|
if "\n".s:done_bundles =~# "\\M\n".name."\n"
|
||||||
|
return ""
|
||||||
|
endif
|
||||||
|
let s:done_bundles .= name . "\n"
|
||||||
|
let list = []
|
||||||
|
for dir in pathogen#split(&rtp)
|
||||||
|
if dir =~# '\<after$'
|
||||||
|
if name =~# '{}$'
|
||||||
|
let list += filter(pathogen#glob_directories(substitute(dir,'after$',name[0:-3],'').'*'.sep.'after'), '!pathogen#is_disabled(v:val[0:-7])') + [dir]
|
||||||
|
else
|
||||||
|
let list += [dir, substitute(dir, 'after$', '', '') . name . sep . 'after']
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
if name =~# '{}$'
|
||||||
|
let list += [dir] + filter(pathogen#glob_directories(dir.sep.name[0:-3].'*'), '!pathogen#is_disabled(v:val)')
|
||||||
|
else
|
||||||
|
let list += [dir . sep . name, dir]
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
let &rtp = pathogen#join(pathogen#uniq(list))
|
||||||
|
return 1
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Deprecated alias for pathogen#incubate().
|
||||||
|
function! pathogen#runtime_append_all_bundles(...) abort " {{{1
|
||||||
|
if a:0
|
||||||
|
call s:warn('Change pathogen#runtime_append_all_bundles('.string(a:1).') to pathogen#incubate('.string(a:1.'/{}').')')
|
||||||
|
else
|
||||||
|
call s:warn('Change pathogen#runtime_append_all_bundles() to pathogen#incubate()')
|
||||||
|
endif
|
||||||
|
return call('pathogen#incubate', map(copy(a:000),'v:val . "/{}"'))
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
let s:done_bundles = ''
|
||||||
|
" }}}1
|
||||||
|
|
||||||
|
" Invoke :helptags on all non-$VIM doc directories in runtimepath.
|
||||||
|
function! pathogen#helptags() abort " {{{1
|
||||||
|
let sep = pathogen#separator()
|
||||||
|
for glob in pathogen#split(&rtp)
|
||||||
|
for dir in split(glob(glob), "\n")
|
||||||
|
if (dir.sep)[0 : strlen($VIMRUNTIME)] !=# $VIMRUNTIME.sep && filewritable(dir.sep.'doc') == 2 && !empty(filter(split(glob(dir.sep.'doc'.sep.'*'),"\n>"),'!isdirectory(v:val)')) && (!filereadable(dir.sep.'doc'.sep.'tags') || filewritable(dir.sep.'doc'.sep.'tags'))
|
||||||
|
silent! execute 'helptags' pathogen#fnameescape(dir.'/doc')
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfor
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
command! -bar Helptags :call pathogen#helptags()
|
||||||
|
|
||||||
|
" Execute the given command. This is basically a backdoor for --remote-expr.
|
||||||
|
function! pathogen#execute(...) abort " {{{1
|
||||||
|
for command in a:000
|
||||||
|
execute command
|
||||||
|
endfor
|
||||||
|
return ''
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Like findfile(), but hardcoded to use the runtimepath.
|
||||||
|
function! pathogen#runtime_findfile(file,count) abort "{{{1
|
||||||
|
let rtp = pathogen#join(1,pathogen#split(&rtp))
|
||||||
|
let file = findfile(a:file,rtp,a:count)
|
||||||
|
if file ==# ''
|
||||||
|
return ''
|
||||||
|
else
|
||||||
|
return fnamemodify(file,':p')
|
||||||
|
endif
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
" Backport of fnameescape().
|
||||||
|
function! pathogen#fnameescape(string) abort " {{{1
|
||||||
|
if exists('*fnameescape')
|
||||||
|
return fnameescape(a:string)
|
||||||
|
elseif a:string ==# '-'
|
||||||
|
return '\-'
|
||||||
|
else
|
||||||
|
return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','')
|
||||||
|
endif
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
if exists(':Vedit')
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
let s:vopen_warning = 0
|
||||||
|
|
||||||
|
function! s:find(count,cmd,file,lcd) " {{{1
|
||||||
|
let rtp = pathogen#join(1,pathogen#split(&runtimepath))
|
||||||
|
let file = pathogen#runtime_findfile(a:file,a:count)
|
||||||
|
if file ==# ''
|
||||||
|
return "echoerr 'E345: Can''t find file \"".a:file."\" in runtimepath'"
|
||||||
|
endif
|
||||||
|
if !s:vopen_warning
|
||||||
|
let s:vopen_warning = 1
|
||||||
|
let warning = '|echohl WarningMsg|echo "Install scriptease.vim to continue using :V'.a:cmd.'"|echohl NONE'
|
||||||
|
else
|
||||||
|
let warning = ''
|
||||||
|
endif
|
||||||
|
if a:lcd
|
||||||
|
let path = file[0:-strlen(a:file)-2]
|
||||||
|
execute 'lcd `=path`'
|
||||||
|
return a:cmd.' '.pathogen#fnameescape(a:file) . warning
|
||||||
|
else
|
||||||
|
return a:cmd.' '.pathogen#fnameescape(file) . warning
|
||||||
|
endif
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
function! s:Findcomplete(A,L,P) " {{{1
|
||||||
|
let sep = pathogen#separator()
|
||||||
|
let cheats = {
|
||||||
|
\'a': 'autoload',
|
||||||
|
\'d': 'doc',
|
||||||
|
\'f': 'ftplugin',
|
||||||
|
\'i': 'indent',
|
||||||
|
\'p': 'plugin',
|
||||||
|
\'s': 'syntax'}
|
||||||
|
if a:A =~# '^\w[\\/]' && has_key(cheats,a:A[0])
|
||||||
|
let request = cheats[a:A[0]].a:A[1:-1]
|
||||||
|
else
|
||||||
|
let request = a:A
|
||||||
|
endif
|
||||||
|
let pattern = substitute(request,'/\|\'.sep,'*'.sep,'g').'*'
|
||||||
|
let found = {}
|
||||||
|
for path in pathogen#split(&runtimepath)
|
||||||
|
let path = expand(path, ':p')
|
||||||
|
let matches = split(glob(path.sep.pattern),"\n")
|
||||||
|
call map(matches,'isdirectory(v:val) ? v:val.sep : v:val')
|
||||||
|
call map(matches,'expand(v:val, ":p")[strlen(path)+1:-1]')
|
||||||
|
for match in matches
|
||||||
|
let found[match] = 1
|
||||||
|
endfor
|
||||||
|
endfor
|
||||||
|
return sort(keys(found))
|
||||||
|
endfunction " }}}1
|
||||||
|
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Ve :execute s:find(<count>,'edit<bang>',<q-args>,0)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vedit :execute s:find(<count>,'edit<bang>',<q-args>,0)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vopen :execute s:find(<count>,'edit<bang>',<q-args>,1)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vsplit :execute s:find(<count>,'split',<q-args>,<bang>1)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vvsplit :execute s:find(<count>,'vsplit',<q-args>,<bang>1)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vtabedit :execute s:find(<count>,'tabedit',<q-args>,<bang>1)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vpedit :execute s:find(<count>,'pedit',<q-args>,<bang>1)
|
||||||
|
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vread :execute s:find(<count>,'read',<q-args>,<bang>1)
|
||||||
|
|
||||||
|
" vim:set et sw=2:
|
1
config/vim/colors/molokai.vim
Symbolic link
1
config/vim/colors/molokai.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/home/qgodefro/.homemaker/config/vim/molokai.vim
|
1
config/vim/filetype.vim
Normal file
1
config/vim/filetype.vim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
au BufRead,BufNewFile /etc/nginx/*,/usr/local/nginx/conf/* if &ft == '' | setfiletype nginx | endif
|
664
config/vim/nginx.vim
Normal file
664
config/vim/nginx.vim
Normal file
|
@ -0,0 +1,664 @@
|
||||||
|
" Vim syntax file
|
||||||
|
" Language: nginx.conf
|
||||||
|
|
||||||
|
if exists("b:current_syntax")
|
||||||
|
finish
|
||||||
|
end
|
||||||
|
|
||||||
|
setlocal iskeyword+=.
|
||||||
|
setlocal iskeyword+=/
|
||||||
|
setlocal iskeyword+=:
|
||||||
|
|
||||||
|
syn match ngxVariable '\$\w\w*'
|
||||||
|
syn match ngxVariableBlock '\$\w\w*' contained
|
||||||
|
syn match ngxVariableString '\$\w\w*' contained
|
||||||
|
syn region ngxBlock start=+^+ end=+{+ contains=ngxComment,ngxDirectiveBlock,ngxVariableBlock,ngxString oneline
|
||||||
|
syn region ngxString start=+"+ end=+"+ skip=+\\\\\|\\"+ contains=ngxVariableString oneline
|
||||||
|
syn region ngxString start=+'+ end=+'+ skip=+\\\\\|\\'+ contains=ngxVariableString oneline
|
||||||
|
syn match ngxComment '\s*#.*$'
|
||||||
|
|
||||||
|
syn keyword ngxBoolean on
|
||||||
|
syn keyword ngxBoolean off
|
||||||
|
|
||||||
|
syn keyword ngxDirectiveBlock http contained
|
||||||
|
syn keyword ngxDirectiveBlock mail contained
|
||||||
|
syn keyword ngxDirectiveBlock events contained
|
||||||
|
syn keyword ngxDirectiveBlock server contained
|
||||||
|
syn keyword ngxDirectiveBlock types contained
|
||||||
|
syn keyword ngxDirectiveBlock location contained
|
||||||
|
syn keyword ngxDirectiveBlock upstream contained
|
||||||
|
syn keyword ngxDirectiveBlock charset_map contained
|
||||||
|
syn keyword ngxDirectiveBlock limit_except contained
|
||||||
|
syn keyword ngxDirectiveBlock if contained
|
||||||
|
syn keyword ngxDirectiveBlock geo contained
|
||||||
|
syn keyword ngxDirectiveBlock map contained
|
||||||
|
|
||||||
|
syn keyword ngxDirectiveImportant include
|
||||||
|
syn keyword ngxDirectiveImportant root
|
||||||
|
syn keyword ngxDirectiveImportant server
|
||||||
|
syn keyword ngxDirectiveImportant server_name
|
||||||
|
syn keyword ngxDirectiveImportant listen
|
||||||
|
syn keyword ngxDirectiveImportant internal
|
||||||
|
syn keyword ngxDirectiveImportant proxy_pass
|
||||||
|
syn keyword ngxDirectiveImportant memcached_pass
|
||||||
|
syn keyword ngxDirectiveImportant fastcgi_pass
|
||||||
|
syn keyword ngxDirectiveImportant try_files
|
||||||
|
|
||||||
|
syn keyword ngxDirectiveControl break
|
||||||
|
syn keyword ngxDirectiveControl return
|
||||||
|
syn keyword ngxDirectiveControl rewrite
|
||||||
|
syn keyword ngxDirectiveControl set
|
||||||
|
|
||||||
|
syn keyword ngxDirectiveError error_page
|
||||||
|
syn keyword ngxDirectiveError post_action
|
||||||
|
|
||||||
|
syn keyword ngxDirectiveDeprecated connections
|
||||||
|
syn keyword ngxDirectiveDeprecated imap
|
||||||
|
syn keyword ngxDirectiveDeprecated open_file_cache_retest
|
||||||
|
syn keyword ngxDirectiveDeprecated optimize_server_names
|
||||||
|
syn keyword ngxDirectiveDeprecated satisfy_any
|
||||||
|
|
||||||
|
syn keyword ngxDirective accept_mutex
|
||||||
|
syn keyword ngxDirective accept_mutex_delay
|
||||||
|
syn keyword ngxDirective access_log
|
||||||
|
syn keyword ngxDirective add_after_body
|
||||||
|
syn keyword ngxDirective add_before_body
|
||||||
|
syn keyword ngxDirective add_header
|
||||||
|
syn keyword ngxDirective addition_types
|
||||||
|
syn keyword ngxDirective aio
|
||||||
|
syn keyword ngxDirective alias
|
||||||
|
syn keyword ngxDirective allow
|
||||||
|
syn keyword ngxDirective ancient_browser
|
||||||
|
syn keyword ngxDirective ancient_browser_value
|
||||||
|
syn keyword ngxDirective auth_basic
|
||||||
|
syn keyword ngxDirective auth_basic_user_file
|
||||||
|
syn keyword ngxDirective auth_http
|
||||||
|
syn keyword ngxDirective auth_http_header
|
||||||
|
syn keyword ngxDirective auth_http_timeout
|
||||||
|
syn keyword ngxDirective autoindex
|
||||||
|
syn keyword ngxDirective autoindex_exact_size
|
||||||
|
syn keyword ngxDirective autoindex_localtime
|
||||||
|
syn keyword ngxDirective charset
|
||||||
|
syn keyword ngxDirective charset_types
|
||||||
|
syn keyword ngxDirective client_body_buffer_size
|
||||||
|
syn keyword ngxDirective client_body_in_file_only
|
||||||
|
syn keyword ngxDirective client_body_in_single_buffer
|
||||||
|
syn keyword ngxDirective client_body_temp_path
|
||||||
|
syn keyword ngxDirective client_body_timeout
|
||||||
|
syn keyword ngxDirective client_header_buffer_size
|
||||||
|
syn keyword ngxDirective client_header_timeout
|
||||||
|
syn keyword ngxDirective client_max_body_size
|
||||||
|
syn keyword ngxDirective connection_pool_size
|
||||||
|
syn keyword ngxDirective create_full_put_path
|
||||||
|
syn keyword ngxDirective daemon
|
||||||
|
syn keyword ngxDirective dav_access
|
||||||
|
syn keyword ngxDirective dav_methods
|
||||||
|
syn keyword ngxDirective debug_connection
|
||||||
|
syn keyword ngxDirective debug_points
|
||||||
|
syn keyword ngxDirective default_type
|
||||||
|
syn keyword ngxDirective degradation
|
||||||
|
syn keyword ngxDirective degrade
|
||||||
|
syn keyword ngxDirective deny
|
||||||
|
syn keyword ngxDirective devpoll_changes
|
||||||
|
syn keyword ngxDirective devpoll_events
|
||||||
|
syn keyword ngxDirective directio
|
||||||
|
syn keyword ngxDirective directio_alignment
|
||||||
|
syn keyword ngxDirective empty_gif
|
||||||
|
syn keyword ngxDirective env
|
||||||
|
syn keyword ngxDirective epoll_events
|
||||||
|
syn keyword ngxDirective error_log
|
||||||
|
syn keyword ngxDirective eventport_events
|
||||||
|
syn keyword ngxDirective expires
|
||||||
|
syn keyword ngxDirective fastcgi_bind
|
||||||
|
syn keyword ngxDirective fastcgi_buffer_size
|
||||||
|
syn keyword ngxDirective fastcgi_buffers
|
||||||
|
syn keyword ngxDirective fastcgi_busy_buffers_size
|
||||||
|
syn keyword ngxDirective fastcgi_cache
|
||||||
|
syn keyword ngxDirective fastcgi_cache_key
|
||||||
|
syn keyword ngxDirective fastcgi_cache_methods
|
||||||
|
syn keyword ngxDirective fastcgi_cache_min_uses
|
||||||
|
syn keyword ngxDirective fastcgi_cache_path
|
||||||
|
syn keyword ngxDirective fastcgi_cache_use_stale
|
||||||
|
syn keyword ngxDirective fastcgi_cache_valid
|
||||||
|
syn keyword ngxDirective fastcgi_catch_stderr
|
||||||
|
syn keyword ngxDirective fastcgi_connect_timeout
|
||||||
|
syn keyword ngxDirective fastcgi_hide_header
|
||||||
|
syn keyword ngxDirective fastcgi_ignore_client_abort
|
||||||
|
syn keyword ngxDirective fastcgi_ignore_headers
|
||||||
|
syn keyword ngxDirective fastcgi_index
|
||||||
|
syn keyword ngxDirective fastcgi_intercept_errors
|
||||||
|
syn keyword ngxDirective fastcgi_max_temp_file_size
|
||||||
|
syn keyword ngxDirective fastcgi_next_upstream
|
||||||
|
syn keyword ngxDirective fastcgi_param
|
||||||
|
syn keyword ngxDirective fastcgi_pass_header
|
||||||
|
syn keyword ngxDirective fastcgi_pass_request_body
|
||||||
|
syn keyword ngxDirective fastcgi_pass_request_headers
|
||||||
|
syn keyword ngxDirective fastcgi_read_timeout
|
||||||
|
syn keyword ngxDirective fastcgi_send_lowat
|
||||||
|
syn keyword ngxDirective fastcgi_send_timeout
|
||||||
|
syn keyword ngxDirective fastcgi_split_path_info
|
||||||
|
syn keyword ngxDirective fastcgi_store
|
||||||
|
syn keyword ngxDirective fastcgi_store_access
|
||||||
|
syn keyword ngxDirective fastcgi_temp_file_write_size
|
||||||
|
syn keyword ngxDirective fastcgi_temp_path
|
||||||
|
syn keyword ngxDirective fastcgi_upstream_fail_timeout
|
||||||
|
syn keyword ngxDirective fastcgi_upstream_max_fails
|
||||||
|
syn keyword ngxDirective flv
|
||||||
|
syn keyword ngxDirective geoip_city
|
||||||
|
syn keyword ngxDirective geoip_country
|
||||||
|
syn keyword ngxDirective google_perftools_profiles
|
||||||
|
syn keyword ngxDirective gzip
|
||||||
|
syn keyword ngxDirective gzip_buffers
|
||||||
|
syn keyword ngxDirective gzip_comp_level
|
||||||
|
syn keyword ngxDirective gzip_disable
|
||||||
|
syn keyword ngxDirective gzip_hash
|
||||||
|
syn keyword ngxDirective gzip_http_version
|
||||||
|
syn keyword ngxDirective gzip_min_length
|
||||||
|
syn keyword ngxDirective gzip_no_buffer
|
||||||
|
syn keyword ngxDirective gzip_proxied
|
||||||
|
syn keyword ngxDirective gzip_static
|
||||||
|
syn keyword ngxDirective gzip_types
|
||||||
|
syn keyword ngxDirective gzip_vary
|
||||||
|
syn keyword ngxDirective gzip_window
|
||||||
|
syn keyword ngxDirective if_modified_since
|
||||||
|
syn keyword ngxDirective ignore_invalid_headers
|
||||||
|
syn keyword ngxDirective image_filter
|
||||||
|
syn keyword ngxDirective image_filter_buffer
|
||||||
|
syn keyword ngxDirective image_filter_jpeg_quality
|
||||||
|
syn keyword ngxDirective image_filter_transparency
|
||||||
|
syn keyword ngxDirective imap_auth
|
||||||
|
syn keyword ngxDirective imap_capabilities
|
||||||
|
syn keyword ngxDirective imap_client_buffer
|
||||||
|
syn keyword ngxDirective index
|
||||||
|
syn keyword ngxDirective ip_hash
|
||||||
|
syn keyword ngxDirective keepalive_requests
|
||||||
|
syn keyword ngxDirective keepalive_timeout
|
||||||
|
syn keyword ngxDirective kqueue_changes
|
||||||
|
syn keyword ngxDirective kqueue_events
|
||||||
|
syn keyword ngxDirective large_client_header_buffers
|
||||||
|
syn keyword ngxDirective limit_conn
|
||||||
|
syn keyword ngxDirective limit_conn_log_level
|
||||||
|
syn keyword ngxDirective limit_rate
|
||||||
|
syn keyword ngxDirective limit_rate_after
|
||||||
|
syn keyword ngxDirective limit_req
|
||||||
|
syn keyword ngxDirective limit_req_log_level
|
||||||
|
syn keyword ngxDirective limit_req_zone
|
||||||
|
syn keyword ngxDirective limit_zone
|
||||||
|
syn keyword ngxDirective lingering_time
|
||||||
|
syn keyword ngxDirective lingering_timeout
|
||||||
|
syn keyword ngxDirective lock_file
|
||||||
|
syn keyword ngxDirective log_format
|
||||||
|
syn keyword ngxDirective log_not_found
|
||||||
|
syn keyword ngxDirective log_subrequest
|
||||||
|
syn keyword ngxDirective map_hash_bucket_size
|
||||||
|
syn keyword ngxDirective map_hash_max_size
|
||||||
|
syn keyword ngxDirective master_process
|
||||||
|
syn keyword ngxDirective memcached_bind
|
||||||
|
syn keyword ngxDirective memcached_buffer_size
|
||||||
|
syn keyword ngxDirective memcached_connect_timeout
|
||||||
|
syn keyword ngxDirective memcached_next_upstream
|
||||||
|
syn keyword ngxDirective memcached_read_timeout
|
||||||
|
syn keyword ngxDirective memcached_send_timeout
|
||||||
|
syn keyword ngxDirective memcached_upstream_fail_timeout
|
||||||
|
syn keyword ngxDirective memcached_upstream_max_fails
|
||||||
|
syn keyword ngxDirective merge_slashes
|
||||||
|
syn keyword ngxDirective min_delete_depth
|
||||||
|
syn keyword ngxDirective modern_browser
|
||||||
|
syn keyword ngxDirective modern_browser_value
|
||||||
|
syn keyword ngxDirective msie_padding
|
||||||
|
syn keyword ngxDirective msie_refresh
|
||||||
|
syn keyword ngxDirective multi_accept
|
||||||
|
syn keyword ngxDirective open_file_cache
|
||||||
|
syn keyword ngxDirective open_file_cache_errors
|
||||||
|
syn keyword ngxDirective open_file_cache_events
|
||||||
|
syn keyword ngxDirective open_file_cache_min_uses
|
||||||
|
syn keyword ngxDirective open_file_cache_valid
|
||||||
|
syn keyword ngxDirective open_log_file_cache
|
||||||
|
syn keyword ngxDirective output_buffers
|
||||||
|
syn keyword ngxDirective override_charset
|
||||||
|
syn keyword ngxDirective perl
|
||||||
|
syn keyword ngxDirective perl_modules
|
||||||
|
syn keyword ngxDirective perl_require
|
||||||
|
syn keyword ngxDirective perl_set
|
||||||
|
syn keyword ngxDirective pid
|
||||||
|
syn keyword ngxDirective pop3_auth
|
||||||
|
syn keyword ngxDirective pop3_capabilities
|
||||||
|
syn keyword ngxDirective port_in_redirect
|
||||||
|
syn keyword ngxDirective postpone_gzipping
|
||||||
|
syn keyword ngxDirective postpone_output
|
||||||
|
syn keyword ngxDirective protocol
|
||||||
|
syn keyword ngxDirective proxy
|
||||||
|
syn keyword ngxDirective proxy_bind
|
||||||
|
syn keyword ngxDirective proxy_buffer
|
||||||
|
syn keyword ngxDirective proxy_buffer_size
|
||||||
|
syn keyword ngxDirective proxy_buffering
|
||||||
|
syn keyword ngxDirective proxy_buffers
|
||||||
|
syn keyword ngxDirective proxy_busy_buffers_size
|
||||||
|
syn keyword ngxDirective proxy_cache
|
||||||
|
syn keyword ngxDirective proxy_cache_key
|
||||||
|
syn keyword ngxDirective proxy_cache_methods
|
||||||
|
syn keyword ngxDirective proxy_cache_min_uses
|
||||||
|
syn keyword ngxDirective proxy_cache_path
|
||||||
|
syn keyword ngxDirective proxy_cache_use_stale
|
||||||
|
syn keyword ngxDirective proxy_cache_valid
|
||||||
|
syn keyword ngxDirective proxy_connect_timeout
|
||||||
|
syn keyword ngxDirective proxy_headers_hash_bucket_size
|
||||||
|
syn keyword ngxDirective proxy_headers_hash_max_size
|
||||||
|
syn keyword ngxDirective proxy_hide_header
|
||||||
|
syn keyword ngxDirective proxy_ignore_client_abort
|
||||||
|
syn keyword ngxDirective proxy_ignore_headers
|
||||||
|
syn keyword ngxDirective proxy_intercept_errors
|
||||||
|
syn keyword ngxDirective proxy_max_temp_file_size
|
||||||
|
syn keyword ngxDirective proxy_method
|
||||||
|
syn keyword ngxDirective proxy_next_upstream
|
||||||
|
syn keyword ngxDirective proxy_pass_error_message
|
||||||
|
syn keyword ngxDirective proxy_pass_header
|
||||||
|
syn keyword ngxDirective proxy_pass_request_body
|
||||||
|
syn keyword ngxDirective proxy_pass_request_headers
|
||||||
|
syn keyword ngxDirective proxy_read_timeout
|
||||||
|
syn keyword ngxDirective proxy_redirect
|
||||||
|
syn keyword ngxDirective proxy_send_lowat
|
||||||
|
syn keyword ngxDirective proxy_send_timeout
|
||||||
|
syn keyword ngxDirective proxy_set_body
|
||||||
|
syn keyword ngxDirective proxy_set_header
|
||||||
|
syn keyword ngxDirective proxy_ssl_session_reuse
|
||||||
|
syn keyword ngxDirective proxy_store
|
||||||
|
syn keyword ngxDirective proxy_store_access
|
||||||
|
syn keyword ngxDirective proxy_temp_file_write_size
|
||||||
|
syn keyword ngxDirective proxy_temp_path
|
||||||
|
syn keyword ngxDirective proxy_timeout
|
||||||
|
syn keyword ngxDirective proxy_upstream_fail_timeout
|
||||||
|
syn keyword ngxDirective proxy_upstream_max_fails
|
||||||
|
syn keyword ngxDirective random_index
|
||||||
|
syn keyword ngxDirective read_ahead
|
||||||
|
syn keyword ngxDirective real_ip_header
|
||||||
|
syn keyword ngxDirective recursive_error_pages
|
||||||
|
syn keyword ngxDirective request_pool_size
|
||||||
|
syn keyword ngxDirective reset_timedout_connection
|
||||||
|
syn keyword ngxDirective resolver
|
||||||
|
syn keyword ngxDirective resolver_timeout
|
||||||
|
syn keyword ngxDirective rewrite_log
|
||||||
|
syn keyword ngxDirective rtsig_overflow_events
|
||||||
|
syn keyword ngxDirective rtsig_overflow_test
|
||||||
|
syn keyword ngxDirective rtsig_overflow_threshold
|
||||||
|
syn keyword ngxDirective rtsig_signo
|
||||||
|
syn keyword ngxDirective satisfy
|
||||||
|
syn keyword ngxDirective secure_link_secret
|
||||||
|
syn keyword ngxDirective send_lowat
|
||||||
|
syn keyword ngxDirective send_timeout
|
||||||
|
syn keyword ngxDirective sendfile
|
||||||
|
syn keyword ngxDirective sendfile_max_chunk
|
||||||
|
syn keyword ngxDirective server_name_in_redirect
|
||||||
|
syn keyword ngxDirective server_names_hash_bucket_size
|
||||||
|
syn keyword ngxDirective server_names_hash_max_size
|
||||||
|
syn keyword ngxDirective server_tokens
|
||||||
|
syn keyword ngxDirective set_real_ip_from
|
||||||
|
syn keyword ngxDirective smtp_auth
|
||||||
|
syn keyword ngxDirective smtp_capabilities
|
||||||
|
syn keyword ngxDirective smtp_client_buffer
|
||||||
|
syn keyword ngxDirective smtp_greeting_delay
|
||||||
|
syn keyword ngxDirective so_keepalive
|
||||||
|
syn keyword ngxDirective source_charset
|
||||||
|
syn keyword ngxDirective ssi
|
||||||
|
syn keyword ngxDirective ssi_ignore_recycled_buffers
|
||||||
|
syn keyword ngxDirective ssi_min_file_chunk
|
||||||
|
syn keyword ngxDirective ssi_silent_errors
|
||||||
|
syn keyword ngxDirective ssi_types
|
||||||
|
syn keyword ngxDirective ssi_value_length
|
||||||
|
syn keyword ngxDirective ssl
|
||||||
|
syn keyword ngxDirective ssl_certificate
|
||||||
|
syn keyword ngxDirective ssl_certificate_key
|
||||||
|
syn keyword ngxDirective ssl_ciphers
|
||||||
|
syn keyword ngxDirective ssl_client_certificate
|
||||||
|
syn keyword ngxDirective ssl_crl
|
||||||
|
syn keyword ngxDirective ssl_dhparam
|
||||||
|
syn keyword ngxDirective ssl_engine
|
||||||
|
syn keyword ngxDirective ssl_prefer_server_ciphers
|
||||||
|
syn keyword ngxDirective ssl_protocols
|
||||||
|
syn keyword ngxDirective ssl_session_cache
|
||||||
|
syn keyword ngxDirective ssl_session_timeout
|
||||||
|
syn keyword ngxDirective ssl_verify_client
|
||||||
|
syn keyword ngxDirective ssl_verify_depth
|
||||||
|
syn keyword ngxDirective starttls
|
||||||
|
syn keyword ngxDirective stub_status
|
||||||
|
syn keyword ngxDirective sub_filter
|
||||||
|
syn keyword ngxDirective sub_filter_once
|
||||||
|
syn keyword ngxDirective sub_filter_types
|
||||||
|
syn keyword ngxDirective tcp_nodelay
|
||||||
|
syn keyword ngxDirective tcp_nopush
|
||||||
|
syn keyword ngxDirective thread_stack_size
|
||||||
|
syn keyword ngxDirective timeout
|
||||||
|
syn keyword ngxDirective timer_resolution
|
||||||
|
syn keyword ngxDirective types_hash_bucket_size
|
||||||
|
syn keyword ngxDirective types_hash_max_size
|
||||||
|
syn keyword ngxDirective underscores_in_headers
|
||||||
|
syn keyword ngxDirective uninitialized_variable_warn
|
||||||
|
syn keyword ngxDirective use
|
||||||
|
syn keyword ngxDirective user
|
||||||
|
syn keyword ngxDirective userid
|
||||||
|
syn keyword ngxDirective userid_domain
|
||||||
|
syn keyword ngxDirective userid_expires
|
||||||
|
syn keyword ngxDirective userid_mark
|
||||||
|
syn keyword ngxDirective userid_name
|
||||||
|
syn keyword ngxDirective userid_p3p
|
||||||
|
syn keyword ngxDirective userid_path
|
||||||
|
syn keyword ngxDirective userid_service
|
||||||
|
syn keyword ngxDirective valid_referers
|
||||||
|
syn keyword ngxDirective variables_hash_bucket_size
|
||||||
|
syn keyword ngxDirective variables_hash_max_size
|
||||||
|
syn keyword ngxDirective worker_connections
|
||||||
|
syn keyword ngxDirective worker_cpu_affinity
|
||||||
|
syn keyword ngxDirective worker_priority
|
||||||
|
syn keyword ngxDirective worker_processes
|
||||||
|
syn keyword ngxDirective worker_rlimit_core
|
||||||
|
syn keyword ngxDirective worker_rlimit_nofile
|
||||||
|
syn keyword ngxDirective worker_rlimit_sigpending
|
||||||
|
syn keyword ngxDirective worker_threads
|
||||||
|
syn keyword ngxDirective working_directory
|
||||||
|
syn keyword ngxDirective xclient
|
||||||
|
syn keyword ngxDirective xml_entities
|
||||||
|
syn keyword ngxDirective xslt_stylesheet
|
||||||
|
syn keyword ngxDirective xslt_types
|
||||||
|
|
||||||
|
" 3rd party module list:
|
||||||
|
" http://wiki.nginx.org/Nginx3rdPartyModules
|
||||||
|
|
||||||
|
" Accept Language Module <http://wiki.nginx.org/NginxAcceptLanguageModule>
|
||||||
|
" Parses the Accept-Language header and gives the most suitable locale from a list of supported locales.
|
||||||
|
syn keyword ngxDirectiveThirdParty set_from_accept_language
|
||||||
|
|
||||||
|
" Access Key Module <http://wiki.nginx.org/NginxHttpAccessKeyModule>
|
||||||
|
" Denies access unless the request URL contains an access key.
|
||||||
|
syn keyword ngxDirectiveThirdParty accesskey
|
||||||
|
syn keyword ngxDirectiveThirdParty accesskey_arg
|
||||||
|
syn keyword ngxDirectiveThirdParty accesskey_hashmethod
|
||||||
|
syn keyword ngxDirectiveThirdParty accesskey_signature
|
||||||
|
|
||||||
|
" Auth PAM Module <http://web.iti.upv.es/~sto/nginx/>
|
||||||
|
" HTTP Basic Authentication using PAM.
|
||||||
|
syn keyword ngxDirectiveThirdParty auth_pam
|
||||||
|
syn keyword ngxDirectiveThirdParty auth_pam_service_name
|
||||||
|
|
||||||
|
" Cache Purge Module <http://labs.frickle.com/nginx_ngx_cache_purge/>
|
||||||
|
" Module adding ability to purge content from FastCGI and proxy caches.
|
||||||
|
syn keyword ngxDirectiveThirdParty fastcgi_cache_purge
|
||||||
|
syn keyword ngxDirectiveThirdParty proxy_cache_purge
|
||||||
|
|
||||||
|
" Chunkin Module <http://wiki.nginx.org/NginxHttpChunkinModule>
|
||||||
|
" HTTP 1.1 chunked-encoding request body support for Nginx.
|
||||||
|
syn keyword ngxDirectiveThirdParty chunkin
|
||||||
|
syn keyword ngxDirectiveThirdParty chunkin_keepalive
|
||||||
|
syn keyword ngxDirectiveThirdParty chunkin_max_chunks_per_buf
|
||||||
|
syn keyword ngxDirectiveThirdParty chunkin_resume
|
||||||
|
|
||||||
|
" Circle GIF Module <http://wiki.nginx.org/NginxHttpCircleGifModule>
|
||||||
|
" Generates simple circle images with the colors and size specified in the URL.
|
||||||
|
syn keyword ngxDirectiveThirdParty circle_gif
|
||||||
|
syn keyword ngxDirectiveThirdParty circle_gif_max_radius
|
||||||
|
syn keyword ngxDirectiveThirdParty circle_gif_min_radius
|
||||||
|
syn keyword ngxDirectiveThirdParty circle_gif_step_radius
|
||||||
|
|
||||||
|
" Drizzle Module <http://github.com/chaoslawful/drizzle-nginx-module>
|
||||||
|
" Make nginx talk directly to mysql, drizzle, and sqlite3 by libdrizzle.
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_connect_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_dbname
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_keepalive
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_module_header
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_pass
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_query
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_recv_cols_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_recv_rows_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_send_query_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty drizzle_server
|
||||||
|
|
||||||
|
" Echo Module <http://wiki.nginx.org/NginxHttpEchoModule>
|
||||||
|
" Brings 'echo', 'sleep', 'time', 'exec' and more shell-style goodies to Nginx config file.
|
||||||
|
syn keyword ngxDirectiveThirdParty echo
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_after_body
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_before_body
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_blocking_sleep
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_duplicate
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_end
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_exec
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_flush
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_foreach_split
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_location
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_location_async
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_read_request_body
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_request_body
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_reset_timer
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_sleep
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_subrequest
|
||||||
|
syn keyword ngxDirectiveThirdParty echo_subrequest_async
|
||||||
|
|
||||||
|
" Events Module <http://docs.dutov.org/nginx_modules_events_en.html>
|
||||||
|
" Privides options for start/stop events.
|
||||||
|
syn keyword ngxDirectiveThirdParty on_start
|
||||||
|
syn keyword ngxDirectiveThirdParty on_stop
|
||||||
|
|
||||||
|
" EY Balancer Module <http://github.com/ry/nginx-ey-balancer>
|
||||||
|
" Adds a request queue to Nginx that allows the limiting of concurrent requests passed to the upstream.
|
||||||
|
syn keyword ngxDirectiveThirdParty max_connections
|
||||||
|
syn keyword ngxDirectiveThirdParty max_connections_max_queue_length
|
||||||
|
syn keyword ngxDirectiveThirdParty max_connections_queue_timeout
|
||||||
|
|
||||||
|
" Fancy Indexes Module <https://connectical.com/projects/ngx-fancyindex/wiki>
|
||||||
|
" Like the built-in autoindex module, but fancier.
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex_exact_size
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex_footer
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex_header
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex_localtime
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex_readme
|
||||||
|
syn keyword ngxDirectiveThirdParty fancyindex_readme_mode
|
||||||
|
|
||||||
|
" GeoIP Module (DEPRECATED) <http://wiki.nginx.org/NginxHttp3rdPartyGeoIPModule>
|
||||||
|
" Country code lookups via the MaxMind GeoIP API.
|
||||||
|
syn keyword ngxDirectiveThirdParty geoip_country_file
|
||||||
|
|
||||||
|
" Headers More Module <http://wiki.nginx.org/NginxHttpHeadersMoreModule>
|
||||||
|
" Set and clear input and output headers...more than "add"!
|
||||||
|
syn keyword ngxDirectiveThirdParty more_clear_headers
|
||||||
|
syn keyword ngxDirectiveThirdParty more_clear_input_headers
|
||||||
|
syn keyword ngxDirectiveThirdParty more_set_headers
|
||||||
|
syn keyword ngxDirectiveThirdParty more_set_input_headers
|
||||||
|
|
||||||
|
" HTTP Push Module <http://pushmodule.slact.net/>
|
||||||
|
" Turn Nginx into an adept long-polling HTTP Push (Comet) server.
|
||||||
|
syn keyword ngxDirectiveThirdParty push_buffer_size
|
||||||
|
syn keyword ngxDirectiveThirdParty push_listener
|
||||||
|
syn keyword ngxDirectiveThirdParty push_message_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty push_queue_messages
|
||||||
|
syn keyword ngxDirectiveThirdParty push_sender
|
||||||
|
|
||||||
|
" HTTP Redis Module <http://people.FreeBSD.ORG/~osa/ngx_http_redis-0.3.1.tar.gz>>
|
||||||
|
" Redis <http://code.google.com/p/redis/> support.>
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_bind
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_buffer_size
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_connect_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_next_upstream
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_pass
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_read_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty redis_send_timeout
|
||||||
|
|
||||||
|
" HTTP JavaScript Module <http://wiki.github.com/kung-fu-tzu/ngx_http_js_module>
|
||||||
|
" Embedding SpiderMonkey. Nearly full port on Perl module.
|
||||||
|
syn keyword ngxDirectiveThirdParty js
|
||||||
|
syn keyword ngxDirectiveThirdParty js_filter
|
||||||
|
syn keyword ngxDirectiveThirdParty js_filter_types
|
||||||
|
syn keyword ngxDirectiveThirdParty js_load
|
||||||
|
syn keyword ngxDirectiveThirdParty js_maxmem
|
||||||
|
syn keyword ngxDirectiveThirdParty js_require
|
||||||
|
syn keyword ngxDirectiveThirdParty js_set
|
||||||
|
syn keyword ngxDirectiveThirdParty js_utf8
|
||||||
|
|
||||||
|
" Log Request Speed <http://wiki.nginx.org/NginxHttpLogRequestSpeed>
|
||||||
|
" Log the time it took to process each request.
|
||||||
|
syn keyword ngxDirectiveThirdParty log_request_speed_filter
|
||||||
|
syn keyword ngxDirectiveThirdParty log_request_speed_filter_timeout
|
||||||
|
|
||||||
|
" Memc Module <http://wiki.nginx.org/NginxHttpMemcModule>
|
||||||
|
" An extended version of the standard memcached module that supports set, add, delete, and many more memcached commands.
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_buffer_size
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_cmds_allowed
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_connect_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_flags_to_last_modified
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_next_upstream
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_pass
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_read_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_send_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_upstream_fail_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty memc_upstream_max_fails
|
||||||
|
|
||||||
|
" Mogilefs Module <http://www.grid.net.ru/nginx/mogilefs.en.html>
|
||||||
|
" Implements a MogileFS client, provides a replace to the Perlbal reverse proxy of the original MogileFS.
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_connect_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_domain
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_methods
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_noverify
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_pass
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_read_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_send_timeout
|
||||||
|
syn keyword ngxDirectiveThirdParty mogilefs_tracker
|
||||||
|
|
||||||
|
" MP4 Streaming Lite Module <http://wiki.nginx.org/NginxMP4StreamingLite>
|
||||||
|
" Will seek to a certain time within H.264/MP4 files when provided with a 'start' parameter in the URL.
|
||||||
|
syn keyword ngxDirectiveThirdParty mp4
|
||||||
|
|
||||||
|
" Nginx Notice Module <http://xph.us/software/nginx-notice/>
|
||||||
|
" Serve static file to POST requests.
|
||||||
|
syn keyword ngxDirectiveThirdParty notice
|
||||||
|
syn keyword ngxDirectiveThirdParty notice_type
|
||||||
|
|
||||||
|
" Phusion Passenger <http://www.modrails.com/documentation.html>
|
||||||
|
" Easy and robust deployment of Ruby on Rails application on Apache and Nginx webservers.
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_base_uri
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_default_user
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_enabled
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_log_level
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_max_instances_per_app
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_max_pool_size
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_pool_idle_time
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_root
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_ruby
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_use_global_queue
|
||||||
|
syn keyword ngxDirectiveThirdParty passenger_user_switching
|
||||||
|
syn keyword ngxDirectiveThirdParty rack_env
|
||||||
|
syn keyword ngxDirectiveThirdParty rails_app_spawner_idle_time
|
||||||
|
syn keyword ngxDirectiveThirdParty rails_env
|
||||||
|
syn keyword ngxDirectiveThirdParty rails_framework_spawner_idle_time
|
||||||
|
syn keyword ngxDirectiveThirdParty rails_spawn_method
|
||||||
|
|
||||||
|
" RDS JSON Module <http://github.com/agentzh/rds-json-nginx-module>
|
||||||
|
" Help ngx_drizzle and other DBD modules emit JSON data.
|
||||||
|
syn keyword ngxDirectiveThirdParty rds_json
|
||||||
|
syn keyword ngxDirectiveThirdParty rds_json_content_type
|
||||||
|
syn keyword ngxDirectiveThirdParty rds_json_format
|
||||||
|
syn keyword ngxDirectiveThirdParty rds_json_ret
|
||||||
|
|
||||||
|
" RRD Graph Module <http://wiki.nginx.org/NginxNgx_rrd_graph>
|
||||||
|
" This module provides an HTTP interface to RRDtool's graphing facilities.
|
||||||
|
syn keyword ngxDirectiveThirdParty rrd_graph
|
||||||
|
syn keyword ngxDirectiveThirdParty rrd_graph_root
|
||||||
|
|
||||||
|
" Secure Download <http://wiki.nginx.org/NginxHttpSecureDownload>
|
||||||
|
" Create expiring links.
|
||||||
|
syn keyword ngxDirectiveThirdParty secure_download
|
||||||
|
syn keyword ngxDirectiveThirdParty secure_download_fail_location
|
||||||
|
syn keyword ngxDirectiveThirdParty secure_download_path_mode
|
||||||
|
syn keyword ngxDirectiveThirdParty secure_download_secret
|
||||||
|
|
||||||
|
" SlowFS Cache Module <http://labs.frickle.com/nginx_ngx_slowfs_cache/>
|
||||||
|
" Module adding ability to cache static files.
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_big_file_size
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_cache
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_cache_key
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_cache_min_uses
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_cache_path
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_cache_purge
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_cache_valid
|
||||||
|
syn keyword ngxDirectiveThirdParty slowfs_temp_path
|
||||||
|
|
||||||
|
" Strip Module <http://wiki.nginx.org/NginxHttpStripModule>
|
||||||
|
" Whitespace remover.
|
||||||
|
syn keyword ngxDirectiveThirdParty strip
|
||||||
|
|
||||||
|
" Substitutions Module <http://wiki.nginx.org/NginxHttpSubsModule>
|
||||||
|
" A filter module which can do both regular expression and fixed string substitutions on response bodies.
|
||||||
|
syn keyword ngxDirectiveThirdParty subs_filter
|
||||||
|
syn keyword ngxDirectiveThirdParty subs_filter_types
|
||||||
|
|
||||||
|
" Supervisord Module <http://labs.frickle.com/nginx_ngx_supervisord/>
|
||||||
|
" Module providing nginx with API to communicate with supervisord and manage (start/stop) backends on-demand.
|
||||||
|
syn keyword ngxDirectiveThirdParty supervisord
|
||||||
|
syn keyword ngxDirectiveThirdParty supervisord_inherit_backend_status
|
||||||
|
syn keyword ngxDirectiveThirdParty supervisord_name
|
||||||
|
syn keyword ngxDirectiveThirdParty supervisord_start
|
||||||
|
syn keyword ngxDirectiveThirdParty supervisord_stop
|
||||||
|
|
||||||
|
" Upload Module <http://www.grid.net.ru/nginx/upload.en.html>
|
||||||
|
" Parses multipart/form-data allowing arbitrary handling of uploaded files.
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_aggregate_form_field
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_buffer_size
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_cleanup
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_limit_rate
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_max_file_size
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_max_output_body_len
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_max_part_header_len
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_pass
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_pass_args
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_pass_form_field
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_set_form_field
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_store
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_store_access
|
||||||
|
|
||||||
|
" Upload Progress Module <http://wiki.nginx.org/NginxHttpUploadProgressModule>
|
||||||
|
" Tracks and reports upload progress.
|
||||||
|
syn keyword ngxDirectiveThirdParty report_uploads
|
||||||
|
syn keyword ngxDirectiveThirdParty track_uploads
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_progress
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_progress_content_type
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_progress_header
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_progress_json_output
|
||||||
|
syn keyword ngxDirectiveThirdParty upload_progress_template
|
||||||
|
|
||||||
|
" Upstream Fair Balancer <http://wiki.nginx.org/NginxHttpUpstreamFairModule>
|
||||||
|
" Sends an incoming request to the least-busy backend server, rather than distributing requests round-robin.
|
||||||
|
syn keyword ngxDirectiveThirdParty fair
|
||||||
|
syn keyword ngxDirectiveThirdParty upstream_fair_shm_size
|
||||||
|
|
||||||
|
" Upstream Consistent Hash <http://wiki.nginx.org/NginxHttpUpstreamConsistentHash>
|
||||||
|
" Select backend based on Consistent hash ring.
|
||||||
|
syn keyword ngxDirectiveThirdParty consistent_hash
|
||||||
|
|
||||||
|
" Upstream Hash Module <http://wiki.nginx.org/NginxHttpUpstreamRequestHashModule>
|
||||||
|
" Provides simple upstream load distribution by hashing a configurable variable.
|
||||||
|
syn keyword ngxDirectiveThirdParty hash
|
||||||
|
syn keyword ngxDirectiveThirdParty hash_again
|
||||||
|
|
||||||
|
" XSS Module <http://github.com/agentzh/xss-nginx-module>
|
||||||
|
" Native support for cross-site scripting (XSS) in an nginx.
|
||||||
|
syn keyword ngxDirectiveThirdParty xss_callback_arg
|
||||||
|
syn keyword ngxDirectiveThirdParty xss_get
|
||||||
|
syn keyword ngxDirectiveThirdParty xss_input_types
|
||||||
|
syn keyword ngxDirectiveThirdParty xss_output_type
|
||||||
|
|
||||||
|
" highlight
|
||||||
|
|
||||||
|
hi link ngxComment Comment
|
||||||
|
hi link ngxVariable Identifier
|
||||||
|
hi link ngxVariableBlock Identifier
|
||||||
|
hi link ngxVariableString PreProc
|
||||||
|
hi link ngxBlock Normal
|
||||||
|
hi link ngxString String
|
||||||
|
|
||||||
|
hi link ngxBoolean Boolean
|
||||||
|
hi link ngxDirectiveBlock Statement
|
||||||
|
hi link ngxDirectiveImportant Type
|
||||||
|
hi link ngxDirectiveControl Keyword
|
||||||
|
hi link ngxDirectiveError Constant
|
||||||
|
hi link ngxDirectiveDeprecated Error
|
||||||
|
hi link ngxDirective Identifier
|
||||||
|
hi link ngxDirectiveThirdParty Special
|
||||||
|
|
||||||
|
let b:current_syntax = "nginx"
|
257
config/vim/vimrc
Normal file
257
config/vim/vimrc
Normal file
|
@ -0,0 +1,257 @@
|
||||||
|
filetype indent plugin on
|
||||||
|
|
||||||
|
" Enable syntax highlighting
|
||||||
|
syntax on
|
||||||
|
|
||||||
|
|
||||||
|
"------------------------------------------------------------
|
||||||
|
" Must have options {{{1
|
||||||
|
"
|
||||||
|
" These are highly recommended options.
|
||||||
|
|
||||||
|
" Vim with default settings does not allow easy switching between multiple files
|
||||||
|
" in the same editor window. Users can use multiple split windows or multiple
|
||||||
|
" tab pages to edit multiple files, but it is still best to enable an option to
|
||||||
|
" allow easier switching between files.
|
||||||
|
"
|
||||||
|
" One such option is the 'hidden' option, which allows you to re-use the same
|
||||||
|
" window and switch from an unsaved buffer without saving it first. Also allows
|
||||||
|
" you to keep an undo history for multiple files when re-using the same window
|
||||||
|
" in this way. Note that using persistent undo also lets you undo in multiple
|
||||||
|
" files even in the same window, but is less efficient and is actually designed
|
||||||
|
" for keeping undo history after closing Vim entirely. Vim will complain if you
|
||||||
|
" try to quit without saving, and swap files will keep you safe if your computer
|
||||||
|
" crashes.
|
||||||
|
set hidden
|
||||||
|
|
||||||
|
" Note that not everyone likes working this way (with the hidden option).
|
||||||
|
" Alternatives include using tabs or split windows instead of re-using the same
|
||||||
|
" window as mentioned above, and/or either of the following options:
|
||||||
|
" set confirm
|
||||||
|
" set autowriteall
|
||||||
|
|
||||||
|
" Better command-line completion
|
||||||
|
set wildmenu
|
||||||
|
|
||||||
|
" Show partial commands in the last line of the screen
|
||||||
|
set showcmd
|
||||||
|
|
||||||
|
" Highlight searches (use <C-L> to temporarily turn off highlighting; see the
|
||||||
|
" mapping of <C-L> below)
|
||||||
|
set hlsearch
|
||||||
|
|
||||||
|
" Modelines have historically been a source of security vulnerabilities. As
|
||||||
|
" such, it may be a good idea to disable them and use the securemodelines
|
||||||
|
" script, <http://www.vim.org/scripts/script.php?script_id=1876>.
|
||||||
|
" set nomodeline
|
||||||
|
|
||||||
|
|
||||||
|
"------------------------------------------------------------
|
||||||
|
" Usability options {{{1
|
||||||
|
"
|
||||||
|
" These are options that users frequently set in their .vimrc. Some of them
|
||||||
|
" change Vim's behaviour in ways which deviate from the true Vi way, but
|
||||||
|
" which are considered to add usability. Which, if any, of these options to
|
||||||
|
" use is very much a personal preference, but they are harmless.
|
||||||
|
|
||||||
|
" Use case insensitive search, except when using capital letters
|
||||||
|
set ignorecase
|
||||||
|
set smartcase
|
||||||
|
|
||||||
|
" Allow backspacing over autoindent, line breaks and start of insert action
|
||||||
|
set backspace=indent,eol,start
|
||||||
|
|
||||||
|
" When opening a new line and no filetype-specific indenting is enabled, keep
|
||||||
|
" the same indent as the line you're currently on. Useful for READMEs, etc.
|
||||||
|
set autoindent
|
||||||
|
|
||||||
|
" Stop certain movements from always going to the first character of a line.
|
||||||
|
" While this behaviour deviates from that of Vi, it does what most users
|
||||||
|
" coming from other editors would expect.
|
||||||
|
set nostartofline
|
||||||
|
|
||||||
|
" Display the cursor position on the last line of the screen or in the status
|
||||||
|
" line of a window
|
||||||
|
set ruler
|
||||||
|
|
||||||
|
" Always display the status line, even if only one window is displayed
|
||||||
|
set laststatus=2
|
||||||
|
|
||||||
|
" Instead of failing a command because of unsaved changes, instead raise a
|
||||||
|
" dialogue asking if you wish to save changed files.
|
||||||
|
set confirm
|
||||||
|
|
||||||
|
" Use visual bell instead of beeping when doing something wrong
|
||||||
|
set visualbell
|
||||||
|
|
||||||
|
" And reset the terminal code for the visual bell. If visualbell is set, and
|
||||||
|
" this line is also included, vim will neither flash nor beep. If visualbell
|
||||||
|
" is unset, this does nothing.
|
||||||
|
set t_vb=
|
||||||
|
|
||||||
|
" Enable use of the mouse for all modes
|
||||||
|
set mouse=a
|
||||||
|
|
||||||
|
" Set the command window height to 2 lines, to avoid many cases of having to
|
||||||
|
" "press <Enter> to continue"
|
||||||
|
set cmdheight=2
|
||||||
|
|
||||||
|
" Display line numbers on the left
|
||||||
|
set number
|
||||||
|
|
||||||
|
" Quickly time out on keycodes, but never time out on mappings
|
||||||
|
set notimeout ttimeout ttimeoutlen=200
|
||||||
|
|
||||||
|
" Use <F11> to toggle between 'paste' and 'nopaste'
|
||||||
|
set pastetoggle=<F11>
|
||||||
|
|
||||||
|
|
||||||
|
"------------------------------------------------------------
|
||||||
|
" Indentation options {{{1
|
||||||
|
"
|
||||||
|
" Indentation settings according to personal preference.
|
||||||
|
|
||||||
|
" Indentation settings for using 4 spaces instead of tabs.
|
||||||
|
" Do not change 'tabstop' from its default value of 8 with this setup.
|
||||||
|
set shiftwidth=4
|
||||||
|
set softtabstop=4
|
||||||
|
set expandtab
|
||||||
|
|
||||||
|
" Indentation settings for using hard tabs for indent. Display tabs as
|
||||||
|
" four characters wide.
|
||||||
|
"set shiftwidth=4
|
||||||
|
"set tabstop=4
|
||||||
|
|
||||||
|
|
||||||
|
"------------------------------------------------------------
|
||||||
|
" Mappings {{{1
|
||||||
|
"
|
||||||
|
" Useful mappings
|
||||||
|
|
||||||
|
" Map Y to act like D and C, i.e. to yank until EOL, rather than act as yy,
|
||||||
|
" which is the default
|
||||||
|
map Y y$
|
||||||
|
|
||||||
|
" Map <C-L> (redraw screen) to also turn off search highlighting until the
|
||||||
|
" next search
|
||||||
|
nnoremap <C-L> :nohl<CR><C-L>
|
||||||
|
|
||||||
|
" /etc/vim/vimrc ou ~/.vimrc
|
||||||
|
" Fichier de configuration de Vim
|
||||||
|
" Formation Debian GNU/Linux par Alexis de Lattre
|
||||||
|
" http://formation-debian.via.ecp.fr/
|
||||||
|
|
||||||
|
" ':help options.txt' ou ':help nom_du_paramètre' dans Vim
|
||||||
|
" pour avoir de l'aide sur les paramètres de ce fichier de configuration
|
||||||
|
|
||||||
|
" tabspacing
|
||||||
|
set ts=4
|
||||||
|
|
||||||
|
" Enable the END key in vim into a screen
|
||||||
|
set term=xterm
|
||||||
|
|
||||||
|
" more powerful backspacing
|
||||||
|
set backspace=indent,eol,start
|
||||||
|
|
||||||
|
" Avertissement par flash (visual bell) plutôt que par beep
|
||||||
|
"set vb
|
||||||
|
|
||||||
|
" Active la coloration syntaxique
|
||||||
|
syntax on
|
||||||
|
set t_Co=256
|
||||||
|
|
||||||
|
" Définit le jeu de couleurs utilisé
|
||||||
|
" Les jeux de couleur disponibles sont les fichiers avec l'extension .vim
|
||||||
|
" dans le répertoire /usr/share/vim/vimcurrent/colors/
|
||||||
|
" colorscheme delek
|
||||||
|
colorscheme molokai
|
||||||
|
|
||||||
|
" Affiche la position du curseur 'ligne,colonne'
|
||||||
|
set ruler
|
||||||
|
" Affiche une barre de status en bas de l'écran
|
||||||
|
set laststatus=2
|
||||||
|
" Contenu de la barre de status
|
||||||
|
set statusline=%<%f%h%m%r%=%l,%c\ %P
|
||||||
|
|
||||||
|
" Largeur maxi du texte inséré
|
||||||
|
" '72' permet de wrapper automatiquement à 72 caractères
|
||||||
|
" '0' désactive la fonction
|
||||||
|
set textwidth=0
|
||||||
|
|
||||||
|
" Wrappe à 72 caractères avec la touche '#'
|
||||||
|
"map # {v}! par 72
|
||||||
|
" Wrappe et justifie à 72 caractères avec la touche '@'
|
||||||
|
"map @ {v}! par 72j
|
||||||
|
|
||||||
|
" Ne pas assurer la compatibilité avec l'ancien Vi
|
||||||
|
set nocompatible
|
||||||
|
" Nombre de colonnes (inutile, voire gênant)
|
||||||
|
"set columns=80
|
||||||
|
" Nombre de commandes dans l'historique
|
||||||
|
set history=50
|
||||||
|
" Options du fichier ~/.viminfo
|
||||||
|
set viminfo='20,\"50
|
||||||
|
" Active la touche Backspace
|
||||||
|
set backspace=2
|
||||||
|
" Autorise le passage d'une ligne à l'autre avec les flèches gauche et droite
|
||||||
|
set whichwrap=<,>,[,]
|
||||||
|
" Garde toujours une ligne visible à l'écran au dessus du curseur
|
||||||
|
set scrolloff=1
|
||||||
|
" Affiche les commandes dans la barre de status
|
||||||
|
set showcmd
|
||||||
|
" Affiche la paire de parenthèses
|
||||||
|
set showmatch
|
||||||
|
" Essaye de garder le curseur dans la même colonne quand on change de ligne
|
||||||
|
set nostartofline
|
||||||
|
" Option de la complétion automatique
|
||||||
|
set wildmode=list:full
|
||||||
|
" Par défaut, ne garde pas l'indentation de la ligne précédente
|
||||||
|
" quand on commence une nouvelle ligne
|
||||||
|
set noautoindent
|
||||||
|
" Options d'indentation pour un fichier C
|
||||||
|
"set cinoptions=(0
|
||||||
|
set cinoptions=:.5s,>1s,p0,t0,(0,g2
|
||||||
|
set shiftwidth=4 " set shiftwidth to 4 spaces
|
||||||
|
|
||||||
|
|
||||||
|
" xterm-debian est un terminal couleur
|
||||||
|
if &term =~ "xterm-debian" || &term =~ "xterm-xfree86"
|
||||||
|
set t_Co=16
|
||||||
|
set t_Sf=dm
|
||||||
|
set t_Sb=dm
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Quand on fait de la programmation, on veut qu'il n'y ait jamais de
|
||||||
|
" vraies tabulations insérées mais seulement des espaces
|
||||||
|
set expandtab
|
||||||
|
|
||||||
|
" Décommentez les 2 lignes suivantes si vous voulez avoir les tabulations et
|
||||||
|
" les espaces marqués en caractères bleus
|
||||||
|
"set list
|
||||||
|
"set listchars=tab:>-,trail:-
|
||||||
|
|
||||||
|
" Les recherches ne sont pas 'case sensitives'
|
||||||
|
"set ignorecase
|
||||||
|
|
||||||
|
" Le découpage des folders se base sur l'indentation
|
||||||
|
"set foldmethod=indent
|
||||||
|
" 12 niveaux d'indentation par défaut pour les folders
|
||||||
|
"set foldlevel=12
|
||||||
|
|
||||||
|
if has("autocmd")
|
||||||
|
" Enabled file type detection
|
||||||
|
" Use the default filetype settings. If you also want to load indent files
|
||||||
|
" to automatically do language-dependent indenting add 'indent' as well.
|
||||||
|
" filetype plugin on
|
||||||
|
|
||||||
|
endif " has ("autocmd")
|
||||||
|
|
||||||
|
" Uncomment the following to have Vim jump to the last position when
|
||||||
|
" reopening a file
|
||||||
|
if has("autocmd")
|
||||||
|
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
|
||||||
|
\| exe "normal '\"" | endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Disable auto comment
|
||||||
|
au FileType * setl fo-=cro
|
354
config/zshrc
Normal file
354
config/zshrc
Normal file
|
@ -0,0 +1,354 @@
|
||||||
|
export PATH=$HOME/bin:$HOME/toolbox:/usr/local/bin:$HOME/hosting-run-scripts/:$PATH export ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
|
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
|
||||||
|
ZSH_THEME="agnoster"
|
||||||
|
|
||||||
|
# CASE_SENSITIVE="true"
|
||||||
|
# HYPHEN_INSENSITIVE="true"
|
||||||
|
DISABLE_AUTO_UPDATE="true"
|
||||||
|
# export UPDATE_ZSH_DAYS=13
|
||||||
|
# DISABLE_LS_COLORS="true"
|
||||||
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
# ENABLE_CORRECTION="true"
|
||||||
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
HIST_STAMPS="yyyy-mm-dd"
|
||||||
|
|
||||||
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||||
|
|
||||||
|
# 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)
|
||||||
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
plugins=(
|
||||||
|
#adb
|
||||||
|
#ant
|
||||||
|
#apache2-macports
|
||||||
|
#arcanist
|
||||||
|
archlinux
|
||||||
|
#asdf
|
||||||
|
#autoenv
|
||||||
|
#autojump
|
||||||
|
#autopep8
|
||||||
|
#aws
|
||||||
|
#battery
|
||||||
|
#bbedit
|
||||||
|
#bgnotify
|
||||||
|
#boot2docker
|
||||||
|
bower
|
||||||
|
branch
|
||||||
|
#brew
|
||||||
|
#bundler
|
||||||
|
#bwana
|
||||||
|
#cabal
|
||||||
|
#cake
|
||||||
|
#cakephp3
|
||||||
|
#capistrano
|
||||||
|
#cargo
|
||||||
|
#cask
|
||||||
|
#catimg
|
||||||
|
#celery
|
||||||
|
#chruby
|
||||||
|
#chucknorris
|
||||||
|
#cloudapp
|
||||||
|
#codeclimate
|
||||||
|
#coffee
|
||||||
|
#colemak
|
||||||
|
colored-man-pages
|
||||||
|
colorize
|
||||||
|
#command-not-found
|
||||||
|
#common-aliases
|
||||||
|
#compleat
|
||||||
|
composer
|
||||||
|
#copybuffer
|
||||||
|
#copydir
|
||||||
|
#copyfile
|
||||||
|
cp
|
||||||
|
#cpanm
|
||||||
|
debian
|
||||||
|
#dircycle
|
||||||
|
#dirhistory
|
||||||
|
#dirpersist
|
||||||
|
#django
|
||||||
|
#dnf
|
||||||
|
docker
|
||||||
|
docker-compose
|
||||||
|
#docker-machine
|
||||||
|
#dotenv
|
||||||
|
#droplr
|
||||||
|
#eecms
|
||||||
|
#emacs
|
||||||
|
#ember-cli
|
||||||
|
#emoji
|
||||||
|
#emoji-clock
|
||||||
|
#emotty
|
||||||
|
encode64
|
||||||
|
#extract
|
||||||
|
#fabric
|
||||||
|
#fancy-ctrl-z
|
||||||
|
#fasd
|
||||||
|
#fastfile
|
||||||
|
#fbterm
|
||||||
|
#fedora
|
||||||
|
#firewalld
|
||||||
|
#forklift
|
||||||
|
#fossil
|
||||||
|
#frontend-search
|
||||||
|
#gas
|
||||||
|
#gb
|
||||||
|
#geeknote
|
||||||
|
#gem
|
||||||
|
git
|
||||||
|
git-extras
|
||||||
|
#git-flow
|
||||||
|
#git-flow-avh
|
||||||
|
#git-hubflow
|
||||||
|
#git-prompt
|
||||||
|
#git-remote-branch
|
||||||
|
#gitfast
|
||||||
|
#github
|
||||||
|
gitignore
|
||||||
|
#glassfish
|
||||||
|
#globalias
|
||||||
|
gnu-utils
|
||||||
|
go
|
||||||
|
golang
|
||||||
|
gpg-agent
|
||||||
|
#gradle
|
||||||
|
#grails
|
||||||
|
#grunt
|
||||||
|
#gulp
|
||||||
|
#hanami
|
||||||
|
#helm
|
||||||
|
#heroku
|
||||||
|
history
|
||||||
|
#history-substring-search
|
||||||
|
#httpie
|
||||||
|
iterm2
|
||||||
|
#iwhois
|
||||||
|
#jake-node
|
||||||
|
#jhbuild
|
||||||
|
#jira
|
||||||
|
#jruby
|
||||||
|
jsontools
|
||||||
|
#jump
|
||||||
|
#kate
|
||||||
|
#kitchen
|
||||||
|
#knife
|
||||||
|
#knife_ssh
|
||||||
|
#kops
|
||||||
|
#kube-ps1
|
||||||
|
#kubectl
|
||||||
|
#laravel
|
||||||
|
#laravel4
|
||||||
|
#laravel5
|
||||||
|
#last-working-dir
|
||||||
|
#lein
|
||||||
|
#lighthouse
|
||||||
|
#lol
|
||||||
|
#macports
|
||||||
|
man
|
||||||
|
#marked2
|
||||||
|
#mercurial
|
||||||
|
#meteor
|
||||||
|
#minikube
|
||||||
|
#mix
|
||||||
|
#mix-fast
|
||||||
|
#mosh
|
||||||
|
#mvn
|
||||||
|
#mysql-macports
|
||||||
|
#n98-magerun
|
||||||
|
nanoc
|
||||||
|
#ng
|
||||||
|
#nmap
|
||||||
|
node
|
||||||
|
#nomad
|
||||||
|
npm
|
||||||
|
#npx
|
||||||
|
#nvm
|
||||||
|
#nyan
|
||||||
|
#oc
|
||||||
|
#osx
|
||||||
|
#pass
|
||||||
|
#paver
|
||||||
|
#pep8
|
||||||
|
#per-directory-history
|
||||||
|
#perl
|
||||||
|
#perms
|
||||||
|
#phing
|
||||||
|
pip
|
||||||
|
#pj
|
||||||
|
#pod
|
||||||
|
postgres
|
||||||
|
#pow
|
||||||
|
#powder
|
||||||
|
#powify
|
||||||
|
#profiles
|
||||||
|
#pyenv
|
||||||
|
#pylint
|
||||||
|
python
|
||||||
|
#rails
|
||||||
|
#rake
|
||||||
|
#rake-fast
|
||||||
|
#rand-quote
|
||||||
|
#rbenv
|
||||||
|
#rbfu
|
||||||
|
#react-native
|
||||||
|
#rebar
|
||||||
|
redis-cli
|
||||||
|
#repo
|
||||||
|
rsync
|
||||||
|
#ruby
|
||||||
|
#rust
|
||||||
|
#rvm
|
||||||
|
#safe-paste
|
||||||
|
#sbt
|
||||||
|
#scala
|
||||||
|
#scd
|
||||||
|
#screen
|
||||||
|
#scw
|
||||||
|
#sfffe
|
||||||
|
#shrink-path
|
||||||
|
#singlechar
|
||||||
|
#spring
|
||||||
|
#sprunge
|
||||||
|
ssh-agent
|
||||||
|
#stack
|
||||||
|
#sublime
|
||||||
|
sudo
|
||||||
|
supervisor
|
||||||
|
#suse
|
||||||
|
#svn
|
||||||
|
#svn-fast-info
|
||||||
|
#swiftpm
|
||||||
|
#symfony
|
||||||
|
#symfony2
|
||||||
|
#systemadmin
|
||||||
|
systemd
|
||||||
|
#taskwarrior
|
||||||
|
#terminalapp
|
||||||
|
#terminitor
|
||||||
|
#terraform
|
||||||
|
#textastic
|
||||||
|
#textmate
|
||||||
|
#thefuck
|
||||||
|
#themes
|
||||||
|
#thor
|
||||||
|
#tig
|
||||||
|
tmux
|
||||||
|
#tmux-cssh
|
||||||
|
#tmuxinator
|
||||||
|
#torrent
|
||||||
|
#tugboat
|
||||||
|
#ubuntu
|
||||||
|
#urltools
|
||||||
|
#vagrant
|
||||||
|
#vault
|
||||||
|
#vi-mode
|
||||||
|
#vim-interaction
|
||||||
|
#virtualenv
|
||||||
|
#virtualenvwrapper
|
||||||
|
#vundle
|
||||||
|
#wakeonlan
|
||||||
|
#wd
|
||||||
|
#web-search
|
||||||
|
#wp-cli
|
||||||
|
#xcode
|
||||||
|
#yarn
|
||||||
|
#yii
|
||||||
|
#yii2
|
||||||
|
#yum
|
||||||
|
#z
|
||||||
|
#zeus
|
||||||
|
#zsh-navigation-tools
|
||||||
|
#zsh_reload
|
||||||
|
)
|
||||||
|
|
||||||
|
zstyle :omz:plugins:ssh-agent agent-forwarding on
|
||||||
|
zstyle :omz:plugins:ssh-agent identities id_ed25519 work_201806 auberge
|
||||||
|
zstyle :omz:plugins:ssh-agent lifetime 4h
|
||||||
|
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
# export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# Preferred editor for local and remote sessions
|
||||||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
|
# export EDITOR='vim'
|
||||||
|
# else
|
||||||
|
# export EDITOR='mvim'
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# Compilation flags
|
||||||
|
# export ARCHFLAGS="-arch x86_64"
|
||||||
|
|
||||||
|
# ssh
|
||||||
|
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
||||||
|
|
||||||
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||||
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||||
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
||||||
|
# For a full list of active aliases, run `alias`.
|
||||||
|
#
|
||||||
|
# Example aliases
|
||||||
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
|
|
||||||
|
HISTFILE="$HOME/.zshistory"
|
||||||
|
HISTSIZE=20000
|
||||||
|
SAVEHIST=10000
|
||||||
|
alias hist='history -D -E'
|
||||||
|
setopt hist_ignore_dups
|
||||||
|
#export TERM=rxvt-unicode-256color
|
||||||
|
unsetopt rm_star_silent
|
||||||
|
setopt auto_pushd
|
||||||
|
|
||||||
|
# export SSH_KEY_PATH="~/.ssh/id_ed25519"
|
||||||
|
|
||||||
|
status() {
|
||||||
|
print ""
|
||||||
|
print "Date..: "$(date "+%Y-%m-%d %H:%M:%S")""
|
||||||
|
print "Shell.: Zsh $ZSH_VERSION (PID = $$, $SHLVL nests)"
|
||||||
|
print "Term..: $TTY ($TERM), $BAUD bauds, $COLUMNS x $LINES cars"
|
||||||
|
print "Login.: $LOGNAME (UID = $EUID) on $HOST"
|
||||||
|
print "System: $(cat /etc/[A-Za-z]*[_-][rv]e[lr]*)"
|
||||||
|
print "Uptime:$(uptime)"
|
||||||
|
print ""
|
||||||
|
}
|
||||||
|
|
||||||
|
alias fr='setxkbmap fr'
|
||||||
|
alias us='setxkbmap us'
|
||||||
|
alias meteo='curl -4 http://wttr.in/Roubaix'
|
||||||
|
alias dl='wget -r -k -T 5 -t 2 -U '\''Mozilla/5.0 (X11; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0'\'' '
|
||||||
|
alias egrep='egrep --color=auto'
|
||||||
|
alias fgrep='fgrep --color=auto'
|
||||||
|
alias flip='shuf -i 0-1 -n 1 | sed -e '\''s/1/Pile/'\'' -e '\''s/0/Face/'\'''
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias ls='ls --classify --tabsize=0 --literal --color=auto --show-control-chars --human-readable'
|
||||||
|
alias l='ls -CF'
|
||||||
|
alias la='ls -A'
|
||||||
|
alias ll='ls -lah'
|
||||||
|
alias osj='openstack -f json'
|
||||||
|
alias osc='openstack console log show'
|
||||||
|
alias oss='openstack server'
|
||||||
|
alias pass='tr -dc A-Za-z0-9_ < /dev/urandom | head -c 20 | xargs'
|
||||||
|
alias paste='pastebin -m -n Hactar'
|
||||||
|
alias psa='ps auxwwwf'
|
||||||
|
alias toph='top -cHd1'
|
||||||
|
alias vdir='vdir --color=auto'
|
||||||
|
alias ip="ip --color"
|
||||||
|
|
||||||
|
alias gw01='z3 gw01.infra.mps.gs.ovh.net'
|
||||||
|
alias hr-admin='z3 root@hr-admin.rungs.ovh'
|
||||||
|
alias public='z3 root@public01.infra.gs.ovh.net'
|
||||||
|
alias thot_cloudweb-robot-preprod='thot '\''wss://thot.ovh.com/tail/?tk=c89ec346-ce0d-4504-b69b-b3c216e91385'\'''
|
||||||
|
alias thot_reseller-robot-preprod='thot '\''wss://thot.ovh.com/tail/?tk=e4bdf746-d041-41d3-81a5-7e4629d3e507'\'''
|
||||||
|
alias m5='sm3 ovh@mozg-mutu5.ovh.ha.ovh.net'
|
||||||
|
alias melt='sm3 gs@mozg-meltingpot.ovh.ha.ovh.net'
|
||||||
|
alias mis='sm3 mozg-mis.ovh.ha.ovh.net'
|
8
init
Executable file
8
init
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
locale -a | grep -i "utf8" 2>&1 > /dev/null
|
||||||
|
if [[ ! $? -eq 0 ]]; then
|
||||||
|
echo -e "\033[31;1mPlease install utf8 locale\033[0m"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
_RDIR=$(cd `dirname $0` && pwd)
|
||||||
|
${_RDIR}/bin/homemaker.amd64 -variant $@ ${_RDIR}/common.toml ${_RDIR}
|
Loading…
Add table
Reference in a new issue