diff options
| author | mattkae <mattkae@protonmail.com> | 2022-06-20 06:41:03 -0400 | 
|---|---|---|
| committer | mattkae <mattkae@protonmail.com> | 2022-06-20 06:41:03 -0400 | 
| commit | 151d7c2676a7d09729344ee27a74b7475e1c6d5b (patch) | |
| tree | 590d592ff4091253352058ef58e5f76bd0963e36 /lisp/cpp.el~ | |
| parent | 93a0a95ff35c91324e45a673a30ff64dddb77a62 (diff) | |
Ignore tilda files
Diffstat (limited to 'lisp/cpp.el~')
| -rw-r--r-- | lisp/cpp.el~ | 55 | 
1 files changed, 0 insertions, 55 deletions
diff --git a/lisp/cpp.el~ b/lisp/cpp.el~ deleted file mode 100644 index a81e1ff..0000000 --- a/lisp/cpp.el~ +++ /dev/null @@ -1,55 +0,0 @@ -(defun setup-c() -  (setq c++-tab-always-indent 0) -  (setq c-basic-offset 4)                  ;; Default is 2 -  (setq c-indent-level 4)                  ;; Default is 2 -  (c-set-offset 'brace-list-open 0) - - -  (setq tab-stop-list '(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60)) -  (setq tab-width 4) -  (electric-indent-mode 0) - -  ;; == irony-mode == -  (use-package irony -	:ensure t -	:defer t -	:init -	(add-hook 'c++-mode-hook 'irony-mode) -	(add-hook 'c-mode-hook 'irony-mode) -	(add-hook 'objc-mode-hook 'irony-mode) -	:config -	;; replace the `completion-at-point' and `complete-symbol' bindings in -	;; irony-mode's buffers by irony-mode's function -	(defun my-irony-mode-hook () -      (define-key irony-mode-map [remap completion-at-point] -		'irony-completion-at-point-async) -      (define-key irony-mode-map [remap complete-symbol] -		'irony-completion-at-point-async)) -	(add-hook 'irony-mode-hook 'my-irony-mode-hook) -	(add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options) -	) - -  ;; == company-mode == -  (use-package company -	:ensure t -	:defer t -	:init (add-hook 'after-init-hook 'global-company-mode) -	:config -	(use-package company-irony :ensure t :defer t) -	(setq company-idle-delay              nil -		  company-minimum-prefix-length   2 -		  company-show-numbers            t -		  company-tooltip-limit           20 -		  company-dabbrev-downcase        nil -		  company-backends                '((company-irony company-gtags)) -		  ) -	:bind ("C-;" . company-complete-common) -	) - -  ;; Flycheck -  (eval-after-load 'flycheck -	'(add-hook 'flycheck-mode-hook #'flycheck-irony-setup)) - -) - -(provide 'cpp)  | 
