Sync files with terezi (adds 1 tmp file)
vim: map q: to :q
This commit is contained in:
parent
b525a4cc0d
commit
5c7f1a669f
|
|
@ -1,4 +1,4 @@
|
|||
XTerm*Background: black
|
||||
XTerm*Foreground: white
|
||||
|
||||
#Xcursor.theme: mate
|
||||
Xcursor*theme: whiteglass
|
||||
|
|
|
|||
15
.profile
15
.profile
|
|
@ -1,6 +1,6 @@
|
|||
#!/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"
|
||||
|
||||
# GPG key stuff
|
||||
|
|
@ -12,14 +12,15 @@ export EDITOR=vim
|
|||
export BC_ENV_ARGS="-lq $HOME/.bcrc"
|
||||
|
||||
# PATH
|
||||
export PATH="$HOME/bin:$PATH"
|
||||
#export PATH="/opt/mxe/usr/bin:$PATH"
|
||||
if [[ -d "$HOME/bin" ]]; then
|
||||
export PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
# Android SDK stuff
|
||||
export ANDROID_HOME="/opt/Android_SDK"
|
||||
export NDK_ROOT="/opt/Android_SDK/ndk-bundle"
|
||||
export ANDROID_SDK_ROOT="/opt/Android_SDK"
|
||||
export ANT_ROOT="/usr/bin"
|
||||
#export ANDROID_HOME="/opt/Android_SDK"
|
||||
#export NDK_ROOT="/opt/Android_SDK/ndk-bundle"
|
||||
#export ANDROID_SDK_ROOT="/opt/Android_SDK"
|
||||
#export ANT_ROOT="/usr/bin"
|
||||
|
||||
# Wine: do not change filetype associations
|
||||
export WINEDLLOVERRIDES=winemenubuilder.exe=d
|
||||
|
|
|
|||
9
.vimrc
9
.vimrc
|
|
@ -103,7 +103,7 @@ nnoremap <Leader>9 :9b<CR>
|
|||
nnoremap <Leader>0 :10b<CR>
|
||||
|
||||
" 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>
|
||||
|
||||
" Tab buffers
|
||||
|
|
@ -125,7 +125,6 @@ inoremap <A-j> <C-o>j
|
|||
inoremap <A-k> <C-o>k
|
||||
inoremap <A-l> <C-o>l
|
||||
|
||||
|
||||
" Copy and to X clipboard (Ctrl-C in visual mode and Ctrl-V in insert mode)
|
||||
vmap <C-C> "+y
|
||||
imap <C-V> <C-\><C-O>"+P
|
||||
|
|
@ -135,8 +134,6 @@ imap <C-U> <C-O>u
|
|||
|
||||
" Quick exit
|
||||
map Q :qa<CR>
|
||||
|
||||
" Quick navigation to next buffer
|
||||
" TODO?
|
||||
"map <F2> :n<CR>
|
||||
" Because I always type q: too fast, which opens the command history...
|
||||
map q: :q
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
Loading…
Reference in New Issue