diff --git a/README.md b/README.md index efe5e6b..ae2d184 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ # dotfiles -My configuration files managed by chezmoi \ No newline at end of file +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. diff --git a/dot_tmux.conf b/dot_tmux.conf index cd88653..bad331a 100644 --- a/dot_tmux.conf +++ b/dot_tmux.conf @@ -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 diff --git a/private_dot_config/nvim/after/ftplugin/python.vim b/private_dot_config/nvim/after/ftplugin/python.vim index 534a0c0..903616f 100644 --- a/private_dot_config/nvim/after/ftplugin/python.vim +++ b/private_dot_config/nvim/after/ftplugin/python.vim @@ -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 diff --git a/private_dot_config/private_fish/functions/ve.fish b/private_dot_config/private_fish/functions/ve.fish index 514bd04..bafb546 100644 --- a/private_dot_config/private_fish/functions/ve.fish +++ b/private_dot_config/private_fish/functions/ve.fish @@ -1,3 +1,3 @@ -function ve - source ve/bin/activate.fish +function ve --description "Activate python virtual environment" + source ve/bin/activate.fish end