Compare commits

..

No commits in common. "4896968bd3f1826bbfaff597ccfe3c9c4f8f9470" and "8c40f683131b800c615d9b0574f5b27c8d6af63e" have entirely different histories.

4 changed files with 9 additions and 25 deletions

View File

@ -1,16 +1,3 @@
# 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.
My configuration files managed by chezmoi

View File

@ -1,5 +1,3 @@
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
@ -12,6 +10,9 @@ 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,9 +1,5 @@
set indentexpr=
set noautoindent
set nocindent
set noexpandtab
set nosmartindent
set nosmarttab
set nu
set noexpandtab
set nosmarttab
set tabstop=4
filetype indent off
set indentexpr=

View File

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