Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
- Make sure your
Local by FlyWheelWordPress install is a custom install
| " Denite {{{ | |
| " Change file_rec command. | |
| call denite#custom#var('file_rec', 'command', | |
| \ ['ag', '--follow', '--nocolor', '--nogroup', '--ignore=*.pyc', '-g', '']) | |
| " Change mappings. | |
| call denite#custom#map( | |
| \ 'insert', | |
| \ 'K', | |
| \ '<denite:move_to_next_line>', |
Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
Local by FlyWheel WordPress install is a custom installhttps://getcomposer.org/download/
Open Terminal, copy, paste, and run
| on run {input, parameters} | |
| -- If run without input, open random file at $HOME | |
| try | |
| set filename to POSIX path of input | |
| on error | |
| set filename to "nvim-" & (do shell script "date +%F") & "__" & (random number from 1000 to 9999) & ".txt" | |
| end try | |
| -- Set your editor here | |
| set myEditor to "/usr/local/bin/nvim" | |
| -- Open the file and auto exit after done |
| -- Open selected file using neovim in an iTerm2 window | |
| -- Requires iTerm2 version 2.9+ | |
| (* Install: | |
| * | |
| * (1) Save this script as an Application | |
| * (2) Cmd + drag the application to Finder toolbar | |
| * (3) Click the new shortcut to open selected file in neovim using iTerm2 | |
| *) |
| # OBJECTIVES: Install Arch Linux as a VirtualBox Guest with a complete Plasma5/KDE environment. | |
| # Provide encrypted root and swap filesystems and UEFI boot our Arch Guest from within VirtualBox. | |
| # Note: This install method is specific to VirtualBox (VBox) to allow non-Arch users and Arch testers to evaluate a properly | |
| # configured and secure Arch OS while running a fully enabled Plasma/KDE system, and also by concurrently taking advantage | |
| # of the multiple isolation safeguards inherently provided by the VBox environment. | |
| # For those who want to install Arch on bare metal in a way that supports both dedicated Arch installations and Arch | |
| # installation on a SSD/HDD multi-OS-UEFI-booting system, please refer to my Arch System Installation Guide, here: |
| #!/bin/bash -e | |
| # Start allways the same | |
| wpuser='yourusername' | |
| wpuseremail='yourname@yourdomain.tld' | |
| wpuserpass=$(date +%s | sha256sum | base64 | head -c 16) | |
| dpprefix=$(date +%s | sha256sum | base64 | head -c 6) | |
| clear |
| -- TerminalVim.app | |
| -- This creates a shim Application that will enable you to open files from the Finder in vim using iTerm | |
| -- To use this script: | |
| -- 1. Open Automator and create a new Application | |
| -- 2. Add the "Run Applescript" action | |
| -- 3. Paste this script into the Run Applescript section | |
| -- 4. Save the application as TerminalVim.app in your Applications folder | |
| -- 5. In the Finder, right click on a file and select "Open With". In that window you can set TerminalVim as a default |
| @media( max-width: 768px ) { | |
| .site-header, | |
| #site-navigation, | |
| #sticky-navigation { | |
| display: none !important; | |
| opacity: 0; | |
| } | |
| #mobile-header { | |
| display: block !important; |
| /* To use this in a Google Sheet: | |
| 1. Go to Tools > Script Editor. | |
| 2. Save the script. | |
| 3. Paste this script and click on the bug symbol. | |
| 4. Authorize the script. | |
| 5. Refresh the sheet. | |
| */ | |
| // global | |
| var ss = SpreadsheetApp.getActive(); |