Compare commits

..

5 Commits

Author SHA1 Message Date
Eli Ribble 4896968bd3 Add more python plugin paranoia from work. 2024-03-06 19:24:47 +00:00
Eli Ribble e79151ae0d Remove custom command to clear history.
I don't use it much and it shadows the new window command, which I
didn't previously use, but now will start using.
2024-03-06 19:19:52 +00:00
Eli Ribble 2b21bde9df Make fish the default shell.
Useful for work computers where changing my default shell could have
larger consequences.
2024-03-06 19:19:26 +00:00
Eli Ribble ecd18298e0 Add some convenient commands to README 2024-03-06 19:18:16 +00:00
Eli Ribble 2ae5b37f86 Add description to fish ve function.
And use tabs, The Correct Way.
2024-03-06 19:15:23 +00:00
4 changed files with 26 additions and 10 deletions

View File

@ -1,3 +1,16 @@
# dotfiles
My configuration files managed by chezmoi
To see the changes that would be applied on a new machine:
```
chezmoi diff
```
To apply the changes:
```
chezmoi apply
```
See https://chezmoi.io/user-guide/ for more.

View File

@ -1,3 +1,5 @@
set-option -g default-shell /usr/bin/fish
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
@ -10,9 +12,6 @@ bind-key a send-prefix
set -g escape-time 0
set -g renumber-windows on
# bind Ctrl-k to clearing history
bind-key c clear-history
# Show a visual bell, even on other windows
set-window-option -g visual-bell both
set-window-option -g bell-action other

View File

@ -1,5 +1,9 @@
set nu
set noexpandtab
set nosmarttab
set tabstop=4
set indentexpr=
set noautoindent
set nocindent
set noexpandtab
set nosmartindent
set nosmarttab
set nu
set tabstop=4
filetype indent off

View File

@ -1,3 +1,3 @@
function ve
source ve/bin/activate.fish
function ve --description "Activate python virtual environment"
source ve/bin/activate.fish
end