Added changes to config.org config file

This commit is contained in:
Random936 2023-06-19 15:05:19 -07:00
parent 4a9d6efd7f
commit de0dc4f099

View File

@ -99,13 +99,16 @@ Disable tabs and replace them with a custom number of spaces.
#+begin_src emacs-lisp
(setq-default indent-tabs-mode nil) ; Use spaces instead of tabs.
(setq-default tab-width 3)
(setq-default tab-width 4)
(setq-default evil-shift-width tab-width)
; C Indentation
(setq-default c-basic-offset 4)
; Yara Indentation
(setq yara-indent-offset 4)
(setq yara-indent-section 4)
(setq-default yara-indent-offset 4)
(setq-default yara-indent-section 4)
#+end_src
*** Visualizing White Space
@ -126,6 +129,16 @@ Add a nice visualization for tabs and spaces. This can be helpful to identify wh
(space-mark 32 [183] [46])))
#+end_src
** SSH Remoting with Tramp
Below are a few configuration changes to avoid TRAMP freezes when sshing into a system with complex config files.
#+begin_src emacs-lisp
(setq tramp-remote-shell "/bin/sh")
(setq tramp-remote-shell-login "-l")
(setq tramp-remote-shell-args "-c")
#+end_src
* Packages
Emacs and packages. Pretty much a requirement.