Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed made to my local setup #1

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0f3fffe
changed made to my local setup
Apr 21, 2020
fb5541f
fixed the conflicts the way I presume they should be fixed
Apr 22, 2020
0d0d852
enabled blacken hook again
Apr 22, 2020
0266cfc
updated org location
Apr 22, 2020
24cf1bc
added t to emacs.el
Apr 22, 2020
a882679
added missing ) to emacs.el
Apr 22, 2020
3f932f0
final version since last update from master
Apr 22, 2020
6b0ef66
added overwrite mode for selected text
Apr 22, 2020
bb59e59
fixed theme. moved deletion config to nav.
alec-implicitdesign Apr 22, 2020
3ce5d89
added ipdb version of pdb and added isort python save hook
May 10, 2020
1b04492
commit before pulling master
Jul 9, 2020
7074af7
pulled latest master
Jul 9, 2020
12acf84
got emacs working after latest pull
Jul 9, 2020
03dc7c6
updated python hooks and setup initial version of python type hinting…
Jul 14, 2020
c9db5ae
fixed issue with gittimemachine on python files
Jul 14, 2020
38ea565
got tide config working
Jul 22, 2020
8875e0a
copied in i3 config
Mar 7, 2021
6f84964
copied in bash file
Mar 7, 2021
2dc237e
working on dotfiles for new laptop
andrew-powrie Mar 19, 2021
04b5cab
pulled latest master and fixed conflicts
andrew-powrie Mar 19, 2021
50e80f9
copied in some files from old laptop setup
Mar 19, 2021
2be74de
fixed key mapping on startup
andrew-powrie Mar 20, 2021
322e52f
got emacs running
andrew-powrie Mar 20, 2021
276f32b
working on i3 config
andrew-powrie Mar 22, 2021
c2d6767
working on i3 config
andrew-powrie Mar 22, 2021
4437a67
saving work before pulling latest changes from master
andrew-powrie Jun 23, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions andrew/.profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
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

setxkbmap us; xmodmap -e 'remove Mod1 = Alt_R'; xmodmap -e 'add Mod3 = Alt_R'; xmodmap -e 'clear lock'; xmodmap -e 'clear control'; xmodmap -e 'keycode 66 = Control_L'; xmodmap -e 'add control = Control_L Control_R';


export PATH="$HOME/.poetry/bin:$PATH"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
Loading