From 996529fbd6ef5f0ce32720a814089b8f020526db Mon Sep 17 00:00:00 2001 From: joe Date: Mon, 18 Dec 2023 22:21:54 +0000 Subject: [PATCH 1/4] fixing readme --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a6efd80..3451001a 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,9 @@ tmux # Shell ## ZSH (standard with mac) + https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH -======= + | OS | PATH | | :- | :--- | | Linux | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` | @@ -79,10 +80,13 @@ The installation of these should be covered by the included .tmux.conf To install plugins, use prefix + I (capital ) https://draculatheme.com/tmux -# Once ZSH is setup, then add this to the bottom of ~/.zshrc to open tmux with new terminals. +# Tmux Default +Once ZSH is setup, then add this to the bottom of ~/.zshrc to open tmux with new terminals. +```bash if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then exec tmux new-session -A -s main fi +``` # Editor From 48f2097a7fae589957bfdbb332595444c9c9bac0 Mon Sep 17 00:00:00 2001 From: joe Date: Mon, 18 Dec 2023 22:27:56 +0000 Subject: [PATCH 2/4] FIxing readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 3451001a..cf9876cb 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,12 @@ wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20R wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold.ttf wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Italic.ttf wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold%20Italic.ttf + +# Place fonts in +/usr/local/share/fonts/ + +# Then run +sudo fc-cache -fv ``` ## Install command line stuff @@ -36,6 +42,7 @@ https://github.com/ohmyzsh/ohmyzsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ``` + ## Powerlevel10k https://github.com/romkatv/powerlevel10k#oh-my-zsh From 04d6ee012a5f3e89c0452f0d719eaf6d8f8d1e10 Mon Sep 17 00:00:00 2001 From: joe Date: Mon, 18 Dec 2023 22:27:56 +0000 Subject: [PATCH 3/4] FIxing readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 3451001a..cf9876cb 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,12 @@ wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20R wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold.ttf wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Italic.ttf wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold%20Italic.ttf + +# Place fonts in +/usr/local/share/fonts/ + +# Then run +sudo fc-cache -fv ``` ## Install command line stuff @@ -36,6 +42,7 @@ https://github.com/ohmyzsh/ohmyzsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ``` + ## Powerlevel10k https://github.com/romkatv/powerlevel10k#oh-my-zsh From 866e97064b53c0ff581c3fccef35e6c341ce8323 Mon Sep 17 00:00:00 2001 From: joe Date: Mon, 18 Dec 2023 22:36:32 +0000 Subject: [PATCH 4/4] fixing the treesitter issue --- init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.lua b/init.lua index 5c732e8e..781a81e1 100644 --- a/init.lua +++ b/init.lua @@ -672,4 +672,6 @@ vim.wo.relativenumber = true require("oil").setup() vim.keymap.set("n", "-", "Oil", { desc = "Open parent directory" }) +-- Setup treesitter +require("nvim-treesitter.install").prefer_git = true -- Setup Java Debugging