This file contains hidden or 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
| set nosmoothscroll | |
| map "ctrl+d" scrollPageDown | |
| map "ctrl+u" scrollPageUp | |
| map "ctrl+f" scrollFullPageDown | |
| map "ctrl+b" scrollFullPageUp | |
| map "q" quit | |
| map "u" lastClosedTab |
This file contains hidden or 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
| settings.smoothScroll = false; | |
| map('<Ctrl-d>', 'd'); | |
| map('<Ctrl-u>', 'e'); | |
| map('gm', '<Ctrl-h>'); | |
| map('gM', '<Ctrl-j>'); | |
| map('F', 'gf'); | |
| map('b', 'T'); | |
| map('q', 'x'); | |
| map('u', 'X'); |
This file contains hidden or 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
| set nosmoothscroll | |
| set noautofocus | |
| set nohud | |
| set nodimhintcharacters | |
| set typelinkhints | |
| set noinsertmappings | |
| set cncpcompletion | |
| map <C-d> scrollPageDown | |
| map <C-u> scrollPageUp |
This file contains hidden or 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
| var spacing = 15; | |
| var size = 10; | |
| var center = new THREE.Vector3( 1, 1, 1 ); | |
| center.multiplyScalar( Math.floor( size / 2 ) ); | |
| return { | |
| init: function( particle, i ) { | |
| var x = particle.index; | |
| var y = 0; |