diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-11-01 02:35:38 +0000 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-11-01 02:35:38 +0000 |
commit | fa14c618ca6165f0cb544352376baf708d337959 (patch) | |
tree | 36bb4e22d9c9033cef76a269b653936b168c95b7 /doom.d/config.org | |
parent | 49f3dadf10d8a27221bc2f2caeafd92f4e8feabe (diff) | |
download | dotfiles-fa14c618ca6165f0cb544352376baf708d337959.tar.gz dotfiles-fa14c618ca6165f0cb544352376baf708d337959.tar.bz2 dotfiles-fa14c618ca6165f0cb544352376baf708d337959.zip |
+tag narrow in buffer map for org mode
Diffstat (limited to 'doom.d/config.org')
-rw-r--r-- | doom.d/config.org | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index 2c444fa..e66a837 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -242,6 +242,7 @@ each of the unit tests ran." nil) (setq omnisharp-server-executable-path "~/bin/omnisharp/run") + (add-hook 'csharp-mode-hook '(lambda() (setq c-basic-offset 4) (c-set-style "java"))) ; Hook for csharp setting variables @@ -312,7 +313,8 @@ each of the unit tests ran." :desc "Export to ODT" "E" #'org-pandoc-export-to-odt (:prefix ("n" . "+narrow") :desc "Narrow to subtree" "n" #'org-narrow-to-subtree - :desc "Go out of narrow" "o" #'widen)) + :desc "Go out of narrow" "o" #'widen + :desc "Narrow tags" "t" #'org-tags-sparse-tree)) )) #+END_SRC I like using the org dispatch facilities more than the default export keybinds |