diff options
author | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-08-03 11:42:26 +0700 |
---|---|---|
committer | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-08-03 11:43:38 +0700 |
commit | 04bb23545ae2d7029ecfc4401ea94d89970dd89c (patch) | |
tree | 26adcad0c656e3a4c54d92450201d655fcfb1874 | |
parent | 62338bd5b0ee7c323f64f49d444241dde64ced85 (diff) | |
download | dotfiles-04bb23545ae2d7029ecfc4401ea94d89970dd89c.tar.gz |
Update 2017-08-03
-rw-r--r-- | meta/.bashrc | 3 | ||||
-rw-r--r-- | meta/.fonts/VT323-Regular.ttf | bin | 0 -> 153116 bytes | |||
-rw-r--r-- | meta/.profile | 7 | ||||
-rw-r--r-- | ranger/.config/ranger/rc.conf | 2 | ||||
-rw-r--r-- | vim/.vim/__pycache__/jedi_vim.cpython-35.pyc | bin | 21292 -> 0 bytes | |||
-rwxr-xr-x | vim/.vim/vimrc | 6 |
6 files changed, 9 insertions, 9 deletions
diff --git a/meta/.bashrc b/meta/.bashrc index e92745e..1a85ab0 100644 --- a/meta/.bashrc +++ b/meta/.bashrc @@ -98,10 +98,11 @@ alias la='ls -A' # See /usr/share/doc/bash-doc/examples in the bash-doc package. alias gcc='gcc -O2 -lm' alias fpc='fpc -O1 -XS -gl' -alias mpa='mpv --no-video' +alias mpa='mpv --no-video --loop=inf' alias mount='udevil mount' alias umount='udevil umount' alias x='cd ~ && startx' +alias flare='cd ~/.local/flare-game/ && ./flare && cd -' TF_ALIAS=fuck alias fuck='eval $(thefuck $(fc -ln -1)); history -r' if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases diff --git a/meta/.fonts/VT323-Regular.ttf b/meta/.fonts/VT323-Regular.ttf new file mode 100644 index 0000000..afa6909 --- /dev/null +++ b/meta/.fonts/VT323-Regular.ttf Binary files differdiff --git a/meta/.profile b/meta/.profile index e3da6c9..0f9da1f 100644 --- a/meta/.profile +++ b/meta/.profile @@ -16,9 +16,6 @@ if [ -n "$BASH_VERSION" ]; then fi fi -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/.local/bin" ]; then - PATH="$HOME/.local/bin:$PATH" -fi - +PATH="$HOME/.local/bin:$HOME/.local/share/go/bin:$PATH" +export GOPATH="$HOME/.local/share/go" export XMODIFIERS=@im=ibus diff --git a/ranger/.config/ranger/rc.conf b/ranger/.config/ranger/rc.conf index d7a4fdf..3cc4c42 100644 --- a/ranger/.config/ranger/rc.conf +++ b/ranger/.config/ranger/rc.conf @@ -71,7 +71,7 @@ set preview_images true set preview_images_method w3m # Use a unicode "..." character to mark cut-off filenames? -set unicode_ellipsis false +set unicode_ellipsis true # Show dotfiles in the bookmark preview box? set show_hidden_bookmarks true diff --git a/vim/.vim/__pycache__/jedi_vim.cpython-35.pyc b/vim/.vim/__pycache__/jedi_vim.cpython-35.pyc deleted file mode 100644 index 6db1bc9..0000000 --- a/vim/.vim/__pycache__/jedi_vim.cpython-35.pyc +++ /dev/null Binary files differdiff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index 9006fa5..5cfa33a 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -5,7 +5,7 @@ set undodir=~/.cache/vim/undo set directory=~/.cache/vim/swap set backupdir=~/.cache/vim/backup set viminfo+=n~/.cache/vim/viminfo -set clipboard=exclude:cons\|linux +set clipboard=exclude:cons\|linux autochdir set showcmd noshowmode ruler wildmenu confirm set nostartofline set list listchars+=tab:├─ @@ -18,9 +18,11 @@ let g:jedi#popup_select_first = 0 let g:jedi#show_call_signatures = 2 let g:jedi#smart_auto_mappings = 0 autocmd BufNewFile,BufRead *.PAS setlocal filetype=pascal -autocmd FileType c,h,cpp,arduino setlocal noexpandtab shiftwidth=8 +autocmd FileType c,h,go,cpp,arduino setlocal noexpandtab shiftwidth=8 autocmd FileType rst setlocal shiftwidth=3 autocmd FileType css,javascript,markdown,python setlocal shiftwidth=4 autocmd FileType python syntax keyword pythonBoolean False True None autocmd BufWinEnter * let w:m1=matchadd('ColorColumn', '\%<81v.\%>80v', -1) map Q gq +inoremap <M-,> ≤ +inoremap <M-.> ≥ |