Skip to content

Commit

Permalink
gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan Jahnke committed May 28, 2023
1 parent d643ce7 commit d2f09ee
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nvim/plugin/packer_compiled.lua
2 changes: 1 addition & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ ln -s -f "$HOME/dot_files/zshrc" "$HOME/.zshrc"

# Neovim setup
mkdir -p "$HOME/.config/nvim"
ln -s -f "$HOME/dot_files/nvim/" "$HOME/.config/nvim"
ln -s -f "$HOME/dot_files/nvim" "$HOME/.config/nvim"
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
"$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim"
21 changes: 21 additions & 0 deletions tmux/tmux-layouts/test.session.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Set a custom session root path. Default is `$HOME`.
# Must be called before `initialize_session`.
#session_root "~/Projects/test"

# Create session with specified name if it does not already exist. If no
# argument is given, session name will be based on layout file name.
if initialize_session "test"; then

# Create a new window inline within session layout definition.
#new_window "misc"

# Load a defined window layout.
#load_window "example"

# Select the default active window on session creation.
#select_window 1

fi

# Finalize session creation and switch/attach to it.
finalize_and_go_to_session
4 changes: 1 addition & 3 deletions tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ tmux_conf_theme_right_separator_sub='\uE0B3' # PowerlineSymbols.otf font, see
# - #{username}
# - #{username_ssh}
tmux_conf_theme_status_left=" ❐ #S | ↑#{?uptime_y, #{uptime_y}y,}#{?uptime_d, #{uptime_d}d,}#{?uptime_h, #{uptime_h}h,}#{?uptime_m, #{uptime_m}m,} "
tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized}#{?battery_status,#{battery_status},}#{?battery_bar, #{battery_bar},}#{?battery_percentage, #{battery_percentage},} , %A %d %b %Y ,%l:%M %p ,| #{tmux-spotify-info}"
tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized}#{?battery_status,#{battery_status},}#{?battery_bar, #{battery_bar},}#{?battery_percentage, #{battery_percentage},} , %A %d %b %Y ,%l:%M %p ,|"

# status left style
tmux_conf_theme_status_left_fg="$tmux_conf_theme_colour_6,$tmux_conf_theme_colour_7,$tmux_conf_theme_colour_8"
Expand Down Expand Up @@ -348,7 +348,6 @@ tmux_conf_theme_clock_style="24"
# on Linux, this requires xsel, xclip or wl-copy
tmux_conf_copy_to_os_clipboard=true


# -- user customizations -------------------------------------------------------
# this is the place to override or undo settings

Expand Down Expand Up @@ -376,7 +375,6 @@ bind C-a send-prefix
# move status line to top
set -g status-position top


# -- tpm -----------------------------------------------------------------------

# while I don't use tpm myself, many people requested official support so here
Expand Down

0 comments on commit d2f09ee

Please sign in to comment.