Skip to content

Instantly share code, notes, and snippets.

@rcls
Created December 29, 2021 06:47
Show Gist options
  • Save rcls/cff6df9f567d4e7587c44c6251a2b150 to your computer and use it in GitHub Desktop.
Save rcls/cff6df9f567d4e7587c44c6251a2b150 to your computer and use it in GitHub Desktop.
(global-set-key "\eg" 'goto-line)
(global-set-key "\C-x\\" 'save-buffers-kill-terminal)
(global-unset-key "\C-x\C-c")
(add-to-list 'load-path "/home/mirror/rust-mode/")
(autoload 'rust-mode "rust-mode" nil t)
;;(remove-hook 'write-file-functions 'makefile-warn-suspicious-lines)
(rassq-delete-all #'doc-view-mode auto-mode-alist)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(blink-cursor-mode nil)
'(c-basic-offset 4)
'(c-default-style
'((java-mode . "java")
(awk-mode . "awk")
(other . "stroustrup")))
'(c-offsets-alist '((innamespace . 0)))
'(column-number-mode t)
'(comment-column 40)
'(custom-enabled-themes '(tsdh-light))
'(dired-listing-switches "-alG")
'(fill-column 80)
'(grep-command "grep -nHi ")
'(history-delete-duplicates t)
'(indent-tabs-mode nil)
'(indicate-buffer-boundaries 'left)
'(inhibit-startup-buffer-menu t)
'(inhibit-startup-screen t)
'(large-file-warning-threshold 100000000)
'(line-move-visual nil)
'(mode-require-final-newline nil)
'(nxml-attribute-indent 2)
'(nxml-child-indent 4)
'(package-archives
'(("gnu" . "https://elpa.gnu.org/packages/")
("melpa-stable" . "https://stable.melpa.org/packages/")))
'(package-selected-packages '(markdown-mode))
'(rust-indent-return-type-to-arguments t)
'(rust-indent-where-clause t)
'(show-paren-mode t)
'(show-trailing-whitespace t)
'(tab-width 4)
'(tool-bar-mode nil)
'(tooltip-mode nil)
'(tramp-default-method "ssh")
'(transient-mark-mode nil)
'(vc-handled-backends nil)
'(verilog-auto-endcomments nil)
'(verilog-auto-ignore-concat t)
'(verilog-auto-inst-param-value-type nil)
'(verilog-auto-inst-vector nil)
'(verilog-auto-lineup 'ignore)
'(verilog-auto-newline nil)
'(verilog-auto-read-includes nil)
'(verilog-auto-reset-blocking-in-non nil)
'(verilog-auto-reset-widths nil)
'(verilog-auto-star-expand nil)
'(verilog-auto-wire-comment nil)
'(verilog-cexp-indent 4)
'(verilog-indent-begin-after-if nil)
'(verilog-indent-level 4)
'(verilog-indent-level-behavioral 4)
'(verilog-indent-level-declaration 0)
'(verilog-indent-level-module 0)
'(version-control 'never))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:family "DejaVu Sans Mono" :foundry "PfEd" :slant normal :weight normal :height 113 :width normal))))
'(font-lock-comment-face ((t (:foreground "red4")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment