diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-07-24 12:07:56 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-07-24 12:07:56 +0100 |
commit | 89e1e2ec37f3449f02f9eeef18ad57cbfe80a174 (patch) | |
tree | 02f1123183b2133cef149d7d134359e4e39e053f /doom.d/config.org | |
parent | fcfa344db85bfb83c11a041a62add9036c51894e (diff) | |
download | dotfiles-89e1e2ec37f3449f02f9eeef18ad57cbfe80a174.tar.gz dotfiles-89e1e2ec37f3449f02f9eeef18ad57cbfe80a174.tar.bz2 dotfiles-89e1e2ec37f3449f02f9eeef18ad57cbfe80a174.zip |
~CSharp indenting
Diffstat (limited to 'doom.d/config.org')
-rw-r--r-- | doom.d/config.org | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index 16f8b72..f64fec2 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -57,17 +57,16 @@ become my C one soon! (setq omnisharp-server-executable-path "~/bin/omnisharp/run") (add-hook 'csharp-mode-hook '(lambda() (setq c-basic-offset 4))) ; Hook for csharp setting variables - ; C# Keybinds - (map! - :map csharp-mode-map - :localleader - :desc "Format buffer" "=" 'omnisharp-code-format-entire-file - (:prefix "t" - :desc "Unit Test This" "t" 'omnisharp-unit-test-at-point - :desc "Unit Test Last" "l" 'omnisharp-unit-test-last - :desc "Unit Test All" "b" 'omnisharp-unit-test-buffer - ) - ) + (map! ; CSharp Keybinds + :map csharp-mode-map + :localleader + :desc "Format buffer" "=" 'omnisharp-code-format-entire-file + (:prefix "t" + :desc "Unit Test This" "t" 'omnisharp-unit-test-at-point + :desc "Unit Test Last" "l" 'omnisharp-unit-test-last + :desc "Unit Test All" "b" 'omnisharp-unit-test-buffer + ) + ) ) #+END_SRC |