Skip to content

andre-krueger/.dotfiles_older

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dotfiles

Table of Contents

Emacs

Emacs config

NPM

.npmrc

save-exact=true
defaultSemverRangePrefix: ""
# Needed until this is resolved: https://github.com/react-native-community/cli/issues/27
nodeLinker: node-modules

Jetbrains

.ideavimrc

set commentary
set number relativenumber
let mapleader="\<Space>"
nmap gb :action Back<cr>
nmap gf :action Forward<cr>
nmap <leader>fs :action SaveAll<cr>
set clipboard+=unnamed
set ignorecase
set smartcase

Bash

Env

export ANDROID_HOME=$HOME/Android/Sdk

Path

PATH="$PATH:$ANDROID_HOME/emulator:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$ANDROID_HOME/platform-tools"

Alias

alias syncthing-tunnel='ssh -L 9999:localhost:8384 fedora-nuc'

NVM

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

Rust

. "$HOME/.cargo/env"

.bash_profile

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
	. ~/.bashrc
fi

# User specific environment and startup programs

.bashrc

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi

# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
    PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
	for rc in ~/.bashrc.d/*; do
		if [ -f "$rc" ]; then
			. "$rc"
		fi
	done
fi

unset rc

Git

.gitconfig

[pull]
    rebase = true
[user]
    name = André Krüger
    useConfigOnly = true
[core]
    excludesFile = "~/.gitignore"

Only for Windows.

    sshCommand = C:/Windows/System32/OpenSSH/ssh.exe
[gpg]
    program = C:/Program Files (x86)/gnupg/bin/gpg.exe

.gitignore

.envrc
.idea
.direnv

AVD

Maybe fixes the avd freeze after some time

QuickbootFileBacked = off

Local Variables

Local Variables: eval: (add-hook ‘after-save-hook (lambda ()(org-babel-tangle)) nil t) End:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published