Compare commits

...

2 Commits

Author SHA1 Message Date
Jan Jastrow f81199c2ce
Add config comments 2023-02-25 15:03:22 +01:00
Jan Jastrow ac442761d7
Fix chsh zsh 2023-02-25 14:44:16 +01:00
2 changed files with 10 additions and 8 deletions

View File

@ -10,7 +10,7 @@ ln -s ~/.dotfiles/tmux/tmux.conf ~/.tmux.conf
mkdir ~/.dotfiles/this-machine
touch ~/.dotfiles/this-machine/zsh
touch ~/.dotfiles/this-machine/tmux.conf
sudo chsh -s '$(which zsh)' "$USER"
sudo chsh -s "$(which zsh)" $USER
# If private repo is available, add ssh config + hosts
if [ -d "$HOME/.jan" ]; then

16
nanorc
View File

@ -1,13 +1,15 @@
set autoindent
set autoindent # indent a newly created lines
set tabsize 4
set softwrap
set atblanks
set softwrap # wrap lines
set atblanks # wrap at empty positions (e.g. space, tabs)
set linenumbers
set linenumbers # show line numbers at the left side
set numbercolor #9d5,#111
set indicator # display a "scrollbar" on the right side
set scrollercolor #9d5,#111
set functioncolor #9d5,#111
set indicator
set mouse
set smarthome
set mouse # enable mouse support
set smarthome # 'Home' key position the cursor smarter