diff options
-rw-r--r-- | chitanda/dot_bashrc (renamed from dot_bashrc_chitanda) | 0 | ||||
-rw-r--r-- | chitanda/dot_i3/config (renamed from dot_i3/config.chitanda) | 0 | ||||
-rw-r--r-- | chitanda/dot_i3/i3status.conf (renamed from dot_i3/i3status.conf.chitanda) | 0 | ||||
-rw-r--r-- | dot_inputrc | 32 | ||||
-rw-r--r-- | dot_tmux.conf | 54 | ||||
-rw-r--r-- | dot_vimrc | 94 | ||||
-rw-r--r-- | kusanagi/dot_i3/config (renamed from dot_i3/config.kusanagi) | 0 | ||||
-rwxr-xr-x | kusanagi/dot_i3/i3lock-dpms (renamed from dot_i3/i3lock-dpms) | 0 | ||||
-rw-r--r-- | kusanagi/dot_i3/i3status.conf (renamed from dot_i3/i3status.conf.kusanagi) | 0 | ||||
-rwxr-xr-x | kusanagi/dot_i3/mpdscribble.sh (renamed from dot_i3/mpdscribble.sh) | 0 | ||||
-rwxr-xr-x | kusanagi/dot_xinitrc (renamed from dot_xinitrc) | 0 | ||||
-rw-r--r-- | old/dot_Xdefaults (renamed from dot_Xdefaults) | 0 | ||||
-rw-r--r-- | old/dot_bashrc_konata (renamed from dot_bashrc_konata) | 0 | ||||
-rw-r--r-- | old/dot_gvimrc (renamed from dot_gvimrc) | 0 | ||||
-rw-r--r-- | old/dot_screenrc (renamed from dot_screenrc) | 0 | ||||
-rwxr-xr-x | old/dot_xprofile (renamed from dot_xprofile) | 0 | ||||
-rw-r--r-- | old/dot_zshrc (renamed from dot_zshrc) | 0 | ||||
-rw-r--r-- | saki/dot_bashrc (renamed from dot_bashrc_saki) | 0 | ||||
-rw-r--r-- | saki/dot_i3/config (renamed from dot_i3/config.saki) | 0 | ||||
-rw-r--r-- | saki/dot_i3/i3status.conf (renamed from dot_i3/i3status.conf.saki) | 0 |
20 files changed, 0 insertions, 180 deletions
diff --git a/dot_bashrc_chitanda b/chitanda/dot_bashrc index 84c5f25..84c5f25 100644 --- a/dot_bashrc_chitanda +++ b/chitanda/dot_bashrc diff --git a/dot_i3/config.chitanda b/chitanda/dot_i3/config index 4b48ace..4b48ace 100644 --- a/dot_i3/config.chitanda +++ b/chitanda/dot_i3/config diff --git a/dot_i3/i3status.conf.chitanda b/chitanda/dot_i3/i3status.conf index a59d837..a59d837 100644 --- a/dot_i3/i3status.conf.chitanda +++ b/chitanda/dot_i3/i3status.conf diff --git a/dot_inputrc b/dot_inputrc deleted file mode 100644 index 063e24c..0000000 --- a/dot_inputrc +++ /dev/null @@ -1,32 +0,0 @@ -set editing-mode vi - -"\e[A": history-search-backward -"\e[B": history-search-forward - -set show-all-if-ambiguous on -set completion-ignore-case on -set bell-style none - -# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving -"\e[1;5C": forward-word -"\e[1;5D": backward-word - -# Execute 'jobs' -"\ej": "\C-a\C-kjobs\n" - -# Ajouter "| less" à la fin de la ligne -"\el": "\C-e | less" - -# Ajouter "sudo" au début de la ligne -"\ex": "\C-asudo \C-e" - -# Copier une seconde fois le premier argument de la commande -# (Ne fonctionne que pour des commandes simples) -# Pratique lorsqu'on écrit "mv nom_de\ -\ fichier_\[\ complexe\] nom_de\ -\ fichier_\[\ complexe\].txt" -"\er": '\C-a\ef\C-k\C-y\C-y' - -# ouvre un dmenu avec les fichiers du dir courant -"\ea": ' \\\'$(ls | dmenu -l 24)\\\'\e\C-e' - -# insère le nom du fichier le plus récemment modifié -"\e:": '\\\'$(ls -t -1 -d * | head -n 1)\\\' \e\C-e' diff --git a/dot_tmux.conf b/dot_tmux.conf deleted file mode 100644 index 012bb4f..0000000 --- a/dot_tmux.conf +++ /dev/null @@ -1,54 +0,0 @@ -# KEY BINDINGS - -setw -g mode-keys vi - -# remap prefix to Control + a -set -g prefix C-q -unbind C-b -bind C-q send-prefix - -unbind q -bind-key q copy-mode - -unbind p -bind p paste-buffer - -# force a reload of the config file -unbind r -bind r source-file ~/.tmux.conf - -# quick pane cycling -unbind ^A -bind ^A select-pane -t :.+ - -# switch panes using vim-like bindings C-a hjkl -unbind h -unbind j -unbind k -unbind l -bind h select-pane -L -bind l select-pane -R -bind k select-pane -U -bind j select-pane -D -# switch panes using bindings C-q C-hl -unbind ^H -unbind ^L -bind ^H previous-window -bind ^L next-window - -# OTHER OPTIONS - -set -g mouse on - -set -g escape-time 0 - -# don't rename windows automatically -set-option -g allow-rename off - - -###################### -### DESIGN CHANGES ### -###################### - -set -g status-bg colour6 - diff --git a/dot_vimrc b/dot_vimrc deleted file mode 100644 index 0098eae..0000000 --- a/dot_vimrc +++ /dev/null @@ -1,94 +0,0 @@ -" ============== KEY MAPPINGS - -let mapleader="," - -" Tab modes. -map <leader>m <Esc>:set expandtab ts=2 sw=2 sts=2<CR> -map <leader>t <Esc>:set noexpandtab ts=4 sw=4 sts=4<CR> -map <leader>T <Esc>:set expandtab ts=4 sw=4 sts=4<CR> - -" Folds: -map <leader>f <Esc>:set fen fdn=3 fdm=indent fml=1 fdc=3<CR> - -" H-L for next-prev buffer -nnoremap <leader>l :bnext<CR> -nnoremap <leader>k :bprev<CR> - - -" Append modeline after last line in buffer. -" Use substitute() instead of printf() to handle '%%s' modeline in LaTeX -" files. -function! AppendModeline() - let l:modeline = printf(" vim: set sts=%d ts=%d sw=%d tw=%d %set :", - \ &softtabstop, &tabstop, &shiftwidth, &textwidth, &expandtab ? '' : 'no') - let l:modeline = substitute(&commentstring, "%s", l:modeline, "") - call append(line("$"), l:modeline) -endfunction -nnoremap <silent> <Leader>ml :call AppendModeline()<CR> - - -" =================== OPTIONS - -colorscheme slate - -filetype plugin indent on -set autoindent -set ts=4 sw=4 - -" Controls -set mouse=a -set nostartofline -set wildmode=list:longest - -" Display -highlight SpellBad ctermfg=red ctermbg=none -set bg=dark -set hlsearch -set incsearch -syntax on -set lazyredraw -set number -set relativenumber -set showcmd -set shortmess=a -set display+=lastline - -" indentation for long line wraps -set wrap -set linebreak -set breakindent -let &showbreak = '> ' - -" set cursorline -" hi CursorLine cterm=bold ctermbg=0 -" hi Folded ctermfg=2 ctermbg=0 -" hi FoldColumn ctermfg=2 ctermbg=0 - -let g:sclangTerm = "urxvt -e" - -let NERDTreeIgnore=['\.o$', '\.cmo$', '\.cmx$', '\.cmi$', '\.lib$', '\.pyc$', '^__pycache__$'] - -" set completeopt=menuone,menu,longest,preview - -set undofile -set directory=~/.vim/swp -set backupdir=~/.vim/backup -set undodir=~/.vim/undo - -" =========== FILE TYPE SPECIFIC - -au BufRead,BufNewFile *.make set filetype=make -au BufRead,BufNewFile *.md set filetype=markdown -au BufRead,BufNewFile *.lus set filetype=lustre -au BufRead,BufNewFile *.scade set filetype=scade - -au FileType make setl noexpandtab -au FileType python setl sw=4 sts=4 et -au FileType html setl sw=2 sts=2 et -au FileType htmldjango setl sw=2 sts=2 et -au FileType json setl sw=2 sts=2 et -au FileType yaml setl sw=2 sts=2 et -au FileType css setl sw=4 sts=4 et -au FileType lua setl ts=4 sw=4 noet - -autocmd FileType tex setlocal spell spelllang=en diff --git a/dot_i3/config.kusanagi b/kusanagi/dot_i3/config index b7fa3e9..b7fa3e9 100644 --- a/dot_i3/config.kusanagi +++ b/kusanagi/dot_i3/config diff --git a/dot_i3/i3lock-dpms b/kusanagi/dot_i3/i3lock-dpms index fa97182..fa97182 100755 --- a/dot_i3/i3lock-dpms +++ b/kusanagi/dot_i3/i3lock-dpms diff --git a/dot_i3/i3status.conf.kusanagi b/kusanagi/dot_i3/i3status.conf index e31e6fc..e31e6fc 100644 --- a/dot_i3/i3status.conf.kusanagi +++ b/kusanagi/dot_i3/i3status.conf diff --git a/dot_i3/mpdscribble.sh b/kusanagi/dot_i3/mpdscribble.sh index 6297ee7..6297ee7 100755 --- a/dot_i3/mpdscribble.sh +++ b/kusanagi/dot_i3/mpdscribble.sh diff --git a/dot_xinitrc b/kusanagi/dot_xinitrc index 57de588..57de588 100755 --- a/dot_xinitrc +++ b/kusanagi/dot_xinitrc diff --git a/dot_Xdefaults b/old/dot_Xdefaults index 87c4e3d..87c4e3d 100644 --- a/dot_Xdefaults +++ b/old/dot_Xdefaults diff --git a/dot_bashrc_konata b/old/dot_bashrc_konata index d4a765f..d4a765f 100644 --- a/dot_bashrc_konata +++ b/old/dot_bashrc_konata diff --git a/dot_gvimrc b/old/dot_gvimrc index 880338c..880338c 100644 --- a/dot_gvimrc +++ b/old/dot_gvimrc diff --git a/dot_screenrc b/old/dot_screenrc index ed6b901..ed6b901 100644 --- a/dot_screenrc +++ b/old/dot_screenrc diff --git a/dot_xprofile b/old/dot_xprofile index 3bfc1d2..3bfc1d2 100755 --- a/dot_xprofile +++ b/old/dot_xprofile diff --git a/dot_zshrc b/old/dot_zshrc index 458aa37..458aa37 100644 --- a/dot_zshrc +++ b/old/dot_zshrc diff --git a/dot_bashrc_saki b/saki/dot_bashrc index fa0d5cc..fa0d5cc 100644 --- a/dot_bashrc_saki +++ b/saki/dot_bashrc diff --git a/dot_i3/config.saki b/saki/dot_i3/config index b8305f8..b8305f8 100644 --- a/dot_i3/config.saki +++ b/saki/dot_i3/config diff --git a/dot_i3/i3status.conf.saki b/saki/dot_i3/i3status.conf index 82fb837..82fb837 100644 --- a/dot_i3/i3status.conf.saki +++ b/saki/dot_i3/i3status.conf |