-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from kotct/release/v0.2.0
Release v0.2.0 to stable
- Loading branch information
Showing
27 changed files
with
583 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ network-security.data | |
session.* | ||
recentf | ||
custom.el | ||
eshell/ | ||
|
||
# packages | ||
elpa/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
(require 'fish-mode) | ||
|
||
(smart-tabs-add-language-support fish fish-mode-hook | ||
((fish-indent-line . standard-indent) | ||
(fish-indent-region . standard-indent))) | ||
|
||
(smart-tabs-insinuate 'fish) | ||
|
||
(add-hook 'fish-mode-hook (lambda () (setf indent-tabs-mode t))) | ||
|
||
(provide 'fish) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(add-hook 'go-mode-hook (lambda () | ||
(local-set-key (kbd "M-.") 'godef-jump))) | ||
|
||
(with-eval-after-load 'go-mode | ||
(require 'go-autocomplete)) | ||
|
||
(provide 'go) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(require 'indentation) | ||
|
||
;; Synchronize `sh-basic-offset' and `sh-indentation' to the global tab size | ||
(kotct/setf-tab sh-basic-offset) | ||
(kotct/setf-tab sh-indentation) | ||
|
||
;; Always use indent-tabs-mode in sh-mode | ||
(add-hook 'sh-mode-hook (lambda () (setf indent-tabs-mode t))) | ||
|
||
;; Indent case labels at the same level as the case statement | ||
(setf sh-indent-for-case-label 0) | ||
|
||
;; Indent case alts to + | ||
(setf sh-indent-for-case-alt '+) | ||
|
||
(provide 'sh) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(add-hook 'tex-mode-hook (lambda () | ||
(visual-line-mode +1) | ||
(require 'ispell) | ||
(if (executable-find ispell-program-name) | ||
(flyspell-mode +1)))) | ||
|
||
(provide 'tex) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;; make sure files always have a LF at EOF when saving | ||
;; if you don't want this for a particular file, do | ||
;; M-x set-variable RET require-final-newline RET nil RET | ||
(setf require-final-newline t) | ||
(setq-default require-final-newline t) | ||
|
||
(provide 'file-content) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.