List of commits:
Subject Hash Author Date (UTC)
added some math functions c1e50862b224d3b979246a0229544515a718934d spicylord 2019-09-09 04:23:52
Emacs config 6a2c105497f96272d5cef6b81ba7ac38a4001a9b spicylord 2019-09-07 03:52:52
Commit c1e50862b224d3b979246a0229544515a718934d - added some math functions
Author: spicylord
Author date (UTC): 2019-09-09 04:23
Committer name: spicylord
Committer date (UTC): 2019-09-09 04:23
Parent(s): 6a2c105497f96272d5cef6b81ba7ac38a4001a9b
Signer:
Signing key:
Signing status: N
Tree: 26faa2d9c5d92d782cec7ef52d77dda54bfefcbe
File Lines added Lines deleted
init.el 14 1
File init.el changed (mode: 100644) (index 8a49b3a..e3617dc)
73 73 (other-window 1)) (other-window 1))
74 74 (global-set-key (kbd "C-x 3") 'split-and-follow-verti) (global-set-key (kbd "C-x 3") 'split-and-follow-verti)
75 75
76
76 77 (global-set-key (kbd "<C-return>") 'ansi-term) (global-set-key (kbd "<C-return>") 'ansi-term)
77 78 (global-set-key (kbd "C-k") 'kill-whole-line) (global-set-key (kbd "C-k") 'kill-whole-line)
78 79 (global-set-key (kbd "C-c k") 'kill-line) (global-set-key (kbd "C-c k") 'kill-line)
 
103 104 (setq ido-create-new-buffer 'always) (setq ido-create-new-buffer 'always)
104 105 (setq ido-everywhere t) (setq ido-everywhere t)
105 106 (ido-mode 1) (ido-mode 1)
106 (put 'downcase-region 'disabled nil)
107
108 ;; non-keybind definitions
109
110 (defun degs (radians)
111 (* radians (/ 180 float-pi)))
112
113 (defun rads (degrees)
114 (* degrees (/ float-pi 180)))
115
116 (defun fact (num)
117 (if (> num 1)
118 (* num (fact (- num 1)))
119 1))
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/spicylord/emacsconf

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/spicylord/emacsconf

Clone this repository using git:
git clone git://git.rocketgit.com/user/spicylord/emacsconf

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main