Skip to content

Instantly share code, notes, and snippets.

View victorboissiere's full-sized avatar

Victor Boissiere victorboissiere

View GitHub Profile
unmap h
unmap j
unmap k
unmap l
map j scrollLeft
map k scrollDown
map l scrollUp
map ; scrollRight
[
{
"keys": ["j"],
"command": "move",
"args": {
"by": "characters",
"forward": false
},
"context": [{
"key": "vi_mode_normal"
# workspace
# -------------------------
# To maximize none-editor paneItem e.g. setting-view
'atom-workspace:not(.editor)':
# conflicts insert-mode ctrl-w and ctr-w in mini editor, so comment out by default
# 'ctrl-w z': 'vim-mode-plus:maximize-pane'
'cmd-enter': 'vim-mode-plus:maximize-pane'
# all
# -------------------------
@victorboissiere
victorboissiere / .htaccess
Created October 2, 2016 20:06
https redirection with Apache using a .htaccess file
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]