Skip to content

Commit

Permalink
Enable renumber-windows for tmux
Browse files Browse the repository at this point in the history
  • Loading branch information
semanser committed Jan 13, 2024
1 parent 69da4ca commit ffd90ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions alacritty/.alacritty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,20 @@ text = "#1E1E2E"
TERM = "xterm-256color"

[font]
size = 17.0
size = 15.0

[font.bold]
family = "SF Mono"
family = "JetBrains Mono"

[font.glyph_offset]
x = 0
y = 0

[font.italic]
family = "SF Mono"
family = "JetBrains Mono NL"

[font.normal]
family = "SF Mono"
family = "JetBrains Mono"

[font.offset]
x = 0
Expand Down
2 changes: 1 addition & 1 deletion nvim/.config/nvim/lua/options.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vim.g.copilot_filetypes = {markdown = true} -- enable copilot for markdown files
vim.g.copilot_filetypes = {markdown = true, yaml = true} -- enable copilot for more filetypes
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.opt.autoread = true -- autoload file changes
Expand Down
2 changes: 2 additions & 0 deletions tmux/.tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ setw -g window-status-current-style fg=green,bg=default
setw -g window-status-format "#I #{b:pane_current_path}"
setw -g window-status-current-format "#I #{b:pane_current_path}"

set-option -g renumber-windows on

set -g status-left ""
set -g status-right "#(cd #{pane_current_path}; git rev-parse --abbrev-ref HEAD)"
set -g status-right-style fg=green,bg=default
Expand Down

0 comments on commit ffd90ce

Please sign in to comment.