This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
parserOptions: { | |
ecmaVersion: 8 | |
}, | |
"ecmaFeatures": { | |
"arrowFunctions": true, | |
"binaryLiterals": true, | |
"blockBindings": true, | |
"classes": true, | |
"defaultParams": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo vim /usr/share/X11/xkb/symbols/us | |
-------------------------------------------------- | |
key <AC06> { [ h, H, Left ] }; | |
key <AC07> { [ j, J, Down ] }; | |
key <AC08> { [ k, K, Up ] }; | |
key <AC09> { [ l, L, Right ] }; | |
key <AC10> { [ semicolon, colon, BackSpace ] }; | |
key <AC04> { [ f, F, Escape ] }; | |
key <CAPS> {[ISO_Level3_Shift]}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## davfs2 installation and Box.com account configuration script for Linux | |
## Tested on Ubuntu, Fedora and OpenSuse | |
## Update 1.032615 | |
## This script must be run as root | |
if [ ! $UID = 0 ]; then | |
echo "This script needs super user privileges to run" | |
echo "run it againg using sudo or login as root" | |
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let hintcharacters="asdfgjkl" | |
map H previousTab | |
map L nextTab | |
map b :buffer<Space> | |
map B :buffer<Space> | |
map u lastClosedTab | |
map O :tabnew<Space> | |
map T :tabnew&<Space> | |
map ; : | |
map - openLinkSearchBar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Monaco font | |
set guifont=Monaco:h13:cANSI | |
let g:DisableAutoPHPFolding = 1 " disable PIV's folding | |
set nofoldenable " disable code folding | |
" Change to Drupal tabs | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab |