-
Notifications
You must be signed in to change notification settings - Fork 3
/
initialize.fnl
41 lines (34 loc) · 1.39 KB
/
initialize.fnl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
;; ___ ___ ___ ;;
;; / /\ / /\ / /\ ;;
;; / /::\ / /:/_ / /::\ ;;
;; / /:/\:\ / /:/ /\ / /:/\:\ ;;
;; / /:/~/:/ / /:/ /:/_ / /:/ \:\ ;;
;; /__/:/ /:/___ /__/:/ /:/ /\ /__/:/ \__\:\ ;;
;; \ \:\/:::::/ \ \:\/:/ /:/ \ \:\ / /:/ ;;
;; \ \::/~~~~ \ \::/ /:/ \ \:\ /:/ ;;
;; \ \:\ \ \:\/:/ \ \:\/:/ ;;
;; \ \:\ \ \::/ \ \::/ ;;
;; \__\/ \__\/ \__\/ ;;
;; ___ ;;
;; ___ ___ /__/\ ;;
;; /__/\ / /\ | |::\ ;;
;; \ \:\ / /:/ | |:|:\ ;;
;; \ \:\ /__/::\ __|__|:|\:\ ;;
;; ___ \__\:\ \__\/\:\__ /__/::::| \:\ ;;
;; /__/\ | |:| \ \:\/\ \ \:\~~\__\/ ;;
;; \ \:\| |:| \__\::/ \ \:\ ;;
;; \ \:\__|:| /__/:/ \ \:\ ;;
;; \__\::::/ \__\/ \ \:\ ;;
;; ~~~~ \__\/ ;;
(tset package.loaded :fennel
(let [tangerine-fennel (require :tangerine.fennel)]
(tangerine-fennel.load)))
(require :globals)
(require :settings)
(when vim.loader
(vim.loader.enable))
(tset vim.g :loader_luv true)
(require :packages)
(require :autocommands)
(when vim.g.neovide
(require :neovide))