most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
Install ImageMagick for image conversion:
brew install imagemagick
Install tesseract for OCR:
brew install tesseract --all-languages
Or install without --all-languages and install them manually as needed.
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font: 13px Helvetica, Arial; | |
| } |
| let mix = require("laravel-mix"); | |
| let tailwindcss = require("tailwindcss"); | |
| let glob = require("glob-all"); | |
| let PurgecssPlugin = require("purgecss-webpack-plugin"); | |
| /** | |
| * Custom PurgeCSS Extractor | |
| * https://github.com/FullHuman/purgecss | |
| * https://github.com/FullHuman/purgecss-webpack-plugin | |
| */ |
| # mssql-agent-fts-ha-tools | |
| # Maintainers: Microsoft Corporation (twright-msft on GitHub) | |
| # GitRepo: https://github.com/Microsoft/mssql-docker | |
| # Base OS layer: Latest Ubuntu LTS | |
| FROM ubuntu:16.04 | |
| # Install curl since it is needed to get repo config | |
| # Get official Microsoft repository configuration | |
| RUN export DEBIAN_FRONTEND=noninteractive && \ |
| " Open Netrw on the directory of the current file | |
| nnoremap <leader>dd :Lexplore %:p:h<CR> | |
| " Toggle the Netrw window | |
| nnoremap <Leader>da :Lexplore<CR> | |
| if &columns < 90 | |
| " If the screen is small, occupy half | |
| let g:netrw_winsize = 50 | |
| else |
| -- THIS IS DEPRECATED, USE THE FILE BELOW | |
| -- should get bufnr from autocmd or something | |
| -- conceal only accepts one character | |
| -- thanks to u/Rafat913 for many suggestions and tips | |
| local namespace = vim.api.nvim_create_namespace("class_conceal") | |
| local group = vim.api.nvim_create_augroup("class_conceal", { clear = true }) | |
| local conceal_html_class = function(bufnr) |