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
(with-eval-after-load "company" | |
(global-company-mode 1) | |
(setq company-show-numbers t | |
company-selection-wrap-around t | |
company-idle-delay nil) | |
;; (company-quickhelp-mode 1) | |
(autoload 'company-quickhelp-manual-begin "company-quickhelp" | |
"Manually trigger the ‘company-quickhelp’ popup for the active ‘company’ completion candidate." t) | |
(define-key company-active-map (kbd "C-c h") #'company-quickhelp-manual-begin) | |
;; Use TAB key only for completion selection |
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 | |
# Description: Recursively moves and replaces conflicted Dropbox files keeping the newer one of each pair | |
# Usage: <script-name> - Shows what files would be moved and replaced but does not do any replacements | |
<script-name> replace - Performs file replacements | |
# Based on: http://mechanicalscribe.com/notes/fix-dropbox-conflicts-automatically/ | |
# Thx, http://stackoverflow.com/questions/20723868/batch-rename-dropbox-conflict-files |