trixy/init.fnl

28 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-07-14 19:04:45 +02:00
; ████████╗██████╗ ██╗██╗ ██╗██╗ ██╗
; ╚══██╔══╝██╔══██╗██║╚██╗██╔╝╚██╗ ██╔╝
; ██║ ██████╔╝██║ ╚███╔╝ ╚████╔╝
; ██║ ██╔══██╗██║ ██╔██╗ ╚██╔╝
; ██║ ██║ ██║██║██╔╝ ██╗ ██║
; ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═
2024-07-12 22:10:34 +02:00
; Listen up, you motherfuckers,
; Those Ivy League dopes, they wanna
; mock us. Tell 'em all this is war.
; And not fighting a war is for suckers.
2024-07-14 19:04:45 +02:00
(import-macros {: g! : set!} :hibiscus.vim)
2024-07-12 22:10:34 +02:00
2024-07-14 19:04:45 +02:00
; When using neovide, use these settings
(when vim.g.neovide (do
(set! guifont "FiraCode Nerd Font:h14")
(g! neovide_scale_factor 1.0)
(g! neovide_refresh_rate 120)
(g! neovide_refresh_rate_idle 5)
(g! neovide_cursor_antialiasing true)
(g! neovide_cursor_animate_in_insert_mode true)
(g! neovide_cursor_vfx_mode "ripple")))
2024-07-12 22:10:34 +02:00
(require :plugins)
(require :options)