Update python/ruby, fix jk-mappings

main
Steffen Rademacker 3 years ago
parent f3e534974d
commit 23517fa71e

@ -2,8 +2,8 @@
# ruby
brew install rbenv # restart terminal, then:
rbenv install 3.0.2
rbenv global 3.0.2
rbenv install 3.0.3
rbenv global 3.0.3
# node
curl -L https://git.io/n-install | bash
@ -18,6 +18,6 @@ npm update -g
# first: find out the current python3 version in homebrew
# then install this version with pyenv and link it
brew install pyenv # restart terminal, then:
pyenv install 3.10.0
pyenv global 3.10.0
pyenv install 3.10.1
pyenv global 3.10.1
pip install --upgrade pip

@ -27,6 +27,10 @@ map('n', 'K', '')
map('n', 'n', 'nzzzv')
map('n', 'N', 'Nzzzv')
-- j and k for wrapped lines
map('n', 'j', 'gj')
map('n', 'k', 'gk')
-- sane yanking and copying to clipboard/alfred-history
map('n', 'Y', 'y$')
map('n', 'yy', 'yy <cmd>call system("nc localhost 8377", @0)<cr>')

Loading…
Cancel
Save