Compare commits
No commits in common. "4896968bd3f1826bbfaff597ccfe3c9c4f8f9470" and "8c40f683131b800c615d9b0574f5b27c8d6af63e" have entirely different histories.
4896968bd3
...
8c40f68313
13
README.md
13
README.md
|
@ -1,16 +1,3 @@
|
||||||
# dotfiles
|
# dotfiles
|
||||||
|
|
||||||
My configuration files managed by chezmoi
|
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.
|
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
set-option -g default-shell /usr/bin/fish
|
|
||||||
|
|
||||||
bind-key h select-pane -L
|
bind-key h select-pane -L
|
||||||
bind-key j select-pane -D
|
bind-key j select-pane -D
|
||||||
bind-key k select-pane -U
|
bind-key k select-pane -U
|
||||||
|
@ -12,6 +10,9 @@ bind-key a send-prefix
|
||||||
set -g escape-time 0
|
set -g escape-time 0
|
||||||
set -g renumber-windows on
|
set -g renumber-windows on
|
||||||
|
|
||||||
|
# bind Ctrl-k to clearing history
|
||||||
|
bind-key c clear-history
|
||||||
|
|
||||||
# Show a visual bell, even on other windows
|
# Show a visual bell, even on other windows
|
||||||
set-window-option -g visual-bell both
|
set-window-option -g visual-bell both
|
||||||
set-window-option -g bell-action other
|
set-window-option -g bell-action other
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
set indentexpr=
|
|
||||||
set noautoindent
|
|
||||||
set nocindent
|
|
||||||
set noexpandtab
|
|
||||||
set nosmartindent
|
|
||||||
set nosmarttab
|
|
||||||
set nu
|
set nu
|
||||||
|
set noexpandtab
|
||||||
|
set nosmarttab
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
filetype indent off
|
set indentexpr=
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
function ve --description "Activate python virtual environment"
|
function ve
|
||||||
source ve/bin/activate.fish
|
source ve/bin/activate.fish
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue