From fcf01bf6a9b439a5d903d86fc0947804f9946292 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Thu, 6 May 2021 15:34:09 +0300 Subject: [PATCH 1/7] fixup! at long last, reformat all Python code with 2 space indents --- nvim/after/ftplugin/python.vim | 1 - 1 file changed, 1 deletion(-) delete mode 100644 nvim/after/ftplugin/python.vim diff --git a/nvim/after/ftplugin/python.vim b/nvim/after/ftplugin/python.vim deleted file mode 100644 index e10ab03..0000000 --- a/nvim/after/ftplugin/python.vim +++ /dev/null @@ -1 +0,0 @@ -Indent 4 From f3ed9af843f7b7387bbfcbd38c11fdde48b6f7c0 Mon Sep 17 00:00:00 2001 From: Keanu Date: Sat, 8 May 2021 11:54:32 +0000 Subject: [PATCH 2/7] [Codespaces] Add install script. --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..a30d1b9 --- /dev/null +++ b/install.sh @@ -0,0 +1,4 @@ +rm -rf ~/.oh-my-zsh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended +git clone https://github.com/keanuplayz/dotfiles ~/.dotfiles +echo "source ~/.dotfiles/zsh/zshrc" \ No newline at end of file From 35dfa8d18475633291cb222a3fac0c5560ae6e30 Mon Sep 17 00:00:00 2001 From: Keanu Date: Sat, 8 May 2021 11:56:38 +0000 Subject: [PATCH 3/7] [Codespaces] Fix install script. --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 install.sh diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index a30d1b9..0c325eb --- a/install.sh +++ b/install.sh @@ -1,4 +1,5 @@ rm -rf ~/.oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended git clone https://github.com/keanuplayz/dotfiles ~/.dotfiles -echo "source ~/.dotfiles/zsh/zshrc" \ No newline at end of file +echo "source ~/.dotfiles/zsh/zshrc" >> ~/.zshrc +zsh \ No newline at end of file From cc4aa3ab52781060c2e17bf98907343c22f60e01 Mon Sep 17 00:00:00 2001 From: Keanu Date: Sat, 8 May 2021 12:01:33 +0000 Subject: [PATCH 4/7] [Codespaces] Install welcome script dependencies. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 0c325eb..8557c1d 100755 --- a/install.sh +++ b/install.sh @@ -2,4 +2,5 @@ rm -rf ~/.oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended git clone https://github.com/keanuplayz/dotfiles ~/.dotfiles echo "source ~/.dotfiles/zsh/zshrc" >> ~/.zshrc +pip install colorama psutil distro zsh \ No newline at end of file From 1ae2e1bfcc26a410e00d04e8aec204b195a8eec4 Mon Sep 17 00:00:00 2001 From: Keanu Date: Sat, 8 May 2021 12:04:47 +0000 Subject: [PATCH 5/7] [Codespaces] Add Python venv to gitignore. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0e47e03..5ee376a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.pyc node_modules/ +.venv \ No newline at end of file From 0809e03363722ed614a6fc535d62ce8b1ae6a3f8 Mon Sep 17 00:00:00 2001 From: Keanu Date: Sat, 8 May 2021 12:06:12 +0000 Subject: [PATCH 6/7] [Codespaces] Attempt to autorun ZSH. --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 8557c1d..60d0d3c 100755 --- a/install.sh +++ b/install.sh @@ -3,4 +3,5 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/too git clone https://github.com/keanuplayz/dotfiles ~/.dotfiles echo "source ~/.dotfiles/zsh/zshrc" >> ~/.zshrc pip install colorama psutil distro -zsh \ No newline at end of file +echo "zsh" >> ~/.bashrc +source ~/.bashrc \ No newline at end of file From e2a7a13222b300848308c93c4861d6ed51eea6ee Mon Sep 17 00:00:00 2001 From: Keanu Date: Sat, 8 May 2021 12:12:04 +0000 Subject: [PATCH 7/7] [Codespaces] Set hostname because why not? --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 60d0d3c..22b40ad 100755 --- a/install.sh +++ b/install.sh @@ -1,3 +1,4 @@ +sudo hostname KeanuCodespaces rm -rf ~/.oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended git clone https://github.com/keanuplayz/dotfiles ~/.dotfiles