Sync files with terezi (adds 1 tmp file)

vim: map q: to :q
This commit is contained in:
Lexi / Zoe 2019-01-09 22:29:16 +01:00
parent b525a4cc0d
commit 5c7f1a669f
4 changed files with 31 additions and 14 deletions

View File

@ -1,4 +1,4 @@
XTerm*Background: black XTerm*Background: black
XTerm*Foreground: white XTerm*Foreground: white
#Xcursor.theme: mate Xcursor*theme: whiteglass

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# SSH key agent started by systemd user # SSH key agent is started by systemd user
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.sock" export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.sock"
# GPG key stuff # GPG key stuff
@ -12,14 +12,15 @@ export EDITOR=vim
export BC_ENV_ARGS="-lq $HOME/.bcrc" export BC_ENV_ARGS="-lq $HOME/.bcrc"
# PATH # PATH
export PATH="$HOME/bin:$PATH" if [[ -d "$HOME/bin" ]]; then
#export PATH="/opt/mxe/usr/bin:$PATH" export PATH="$HOME/bin:$PATH"
fi
# Android SDK stuff # Android SDK stuff
export ANDROID_HOME="/opt/Android_SDK" #export ANDROID_HOME="/opt/Android_SDK"
export NDK_ROOT="/opt/Android_SDK/ndk-bundle" #export NDK_ROOT="/opt/Android_SDK/ndk-bundle"
export ANDROID_SDK_ROOT="/opt/Android_SDK" #export ANDROID_SDK_ROOT="/opt/Android_SDK"
export ANT_ROOT="/usr/bin" #export ANT_ROOT="/usr/bin"
# Wine: do not change filetype associations # Wine: do not change filetype associations
export WINEDLLOVERRIDES=winemenubuilder.exe=d export WINEDLLOVERRIDES=winemenubuilder.exe=d

9
.vimrc
View File

@ -103,7 +103,7 @@ nnoremap <Leader>9 :9b<CR>
nnoremap <Leader>0 :10b<CR> nnoremap <Leader>0 :10b<CR>
" Compiling and making " Compiling and making
nnoremap <F9> :w<CR>:make<CR>:redraw!\|cw<CR> nnoremap <F9> :up<CR>:make<CR>:redraw! \| cw<CR>
nnoremap <F10> :up<CR>:make run<CR>:redraw! \| cw<CR> nnoremap <F10> :up<CR>:make run<CR>:redraw! \| cw<CR>
" Tab buffers " Tab buffers
@ -125,7 +125,6 @@ inoremap <A-j> <C-o>j
inoremap <A-k> <C-o>k inoremap <A-k> <C-o>k
inoremap <A-l> <C-o>l inoremap <A-l> <C-o>l
" Copy and to X clipboard (Ctrl-C in visual mode and Ctrl-V in insert mode) " Copy and to X clipboard (Ctrl-C in visual mode and Ctrl-V in insert mode)
vmap <C-C> "+y vmap <C-C> "+y
imap <C-V> <C-\><C-O>"+P imap <C-V> <C-\><C-O>"+P
@ -135,8 +134,6 @@ imap <C-U> <C-O>u
" Quick exit " Quick exit
map Q :qa<CR> map Q :qa<CR>
" Because I always type q: too fast, which opens the command history...
" Quick navigation to next buffer map q: :q
" TODO?
"map <F2> :n<CR>

19
tmp/terezi/.gtkrc-2.0 Normal file
View File

@ -0,0 +1,19 @@
# DO NOT EDIT! This file will be overwritten by LXAppearance.
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
include "/home/lexi/.gtkrc-2.0.mine"
gtk-theme-name="Radiance-Flat-Pink"
gtk-icon-theme-name="Vivacious-NonMono-Light-Pink"
gtk-font-name="Cantarell 10"
gtk-cursor-theme-name="OpenZone_White"
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=0
gtk-enable-input-feedback-sounds=0
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle="hintfull"
gtk-xft-rgba="rgb"