Skip to content

Commit

Permalink
Fix provide calls in lisp libs
Browse files Browse the repository at this point in the history
  • Loading branch information
shevchuk committed Apr 9, 2020
1 parent 4905c2a commit c163919
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 3 deletions.
9 changes: 7 additions & 2 deletions lisp/editor.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,21 @@
(scroll-bar-mode 0)
(scroll-lock-mode t)

(set-language-environment "UTF-8")
(set-default-coding-systems 'utf-8)

(set-default-font "Hack 11")
(add-to-list 'default-frame-alist
'(font . "Hack 11"))

;; Use font-lock everywhere.
(global-font-lock-mode t)
;(global-font-lock-mode t)

;; We have CPU to spare; highlight all syntax categories.
(setq font-lock-maximum-decoration t)
;;(setq font-lock-maximum-decoration t)

(setq-default cursor-type 'box) ;; bar
;;(blink-cursor-mode 2)
(set-cursor-color "#33ff00")

(provide 'editor)
2 changes: 1 addition & 1 deletion lisp/elget-loader.el
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@
(provide 'elget-loader)

(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t) ; Org-mode's repository
1 change: 1 addition & 0 deletions lisp/eshell-misc.el
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,4 @@ PWD is not in a hg repo (or the hg command is not found)."

(setq eshell-highlight-prompt nil)

(provide 'eshell-misc)
2 changes: 2 additions & 0 deletions lisp/golang.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@
("go-build-and-run" "go build -v && echo 'build finish' && eval ./${PWD##*/}"
(multi-compile-locate-file-dir ".git"))))
))

(provide 'golang)
1 change: 1 addition & 0 deletions lisp/keymap.el
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@
("M-." . lsp-find-definition)
("M-p" . ace-window))

(provide 'keymap)
2 changes: 2 additions & 0 deletions lisp/macros.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
;;
(fset 'pomodoro-table
[?| ? ?T ?a ?s ?k ? backspace ? ?| ? ?E ?s ?t ?i ?m ?a ?t ?i ?o ?n ? ?| ? ?R ?e ?a ?l ?\S- ?| return ?| ?- ?- ?- tab ?\M-k])

(provide 'macros)
2 changes: 2 additions & 0 deletions lisp/modeline.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
airline-utf-glyph-branch #xe0a0
airline-utf-glyph-readonly #xe0a2
airline-utf-glyph-linenumber #xe0a1)

(provide 'modeline)
1 change: 1 addition & 0 deletions lisp/orginit.el
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,4 @@



(provide 'orginit)
2 changes: 2 additions & 0 deletions lisp/project.el
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
(interactive)
(kill-new (buffer-file-name))
(message (buffer-file-name)))

(provide 'project)
1 change: 1 addition & 0 deletions lisp/tscript.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@


;;(add-hook 'tide-mode-hook #'tide-restart-server)
(provide 'tscript)

0 comments on commit c163919

Please sign in to comment.