nvim-config/fnl/settings.fnl

56 lines
1.7 KiB
Plaintext
Raw Normal View History

2021-04-04 23:18:26 +07:00
(module user.plugin.settings
{require {nvim aniseed.nvim
nu aniseed.nvim.util}})
2021-07-10 04:05:30 +07:00
;; theme
(global github-theme (require :github-theme))
(github-theme.setup {:theme_style :dark})
2021-07-10 04:05:30 +07:00
2021-04-04 23:18:26 +07:00
;; buffergator
(set nvim.g.buffergator_display_regime "parentdir")
2021-12-14 22:14:45 +07:00
;; Vaffle
2021-10-11 11:22:15 +07:00
(defn open-vaffle []
(let [bufname (nvim.fn.bufname "%")]
(if (= bufname "")
(nvim.fn.vaffle#init)
(nvim.fn.vaffle#init (nvim.fn.expand "%:p")))))
(nu.fn-bridge :OpenVaffle :user.plugin.settings :open-vaffle)
(nvim.set_keymap :n :<leader>dd ":call OpenVaffle()<CR>" {:noremap true :silent true})
2021-04-04 23:18:26 +07:00
2021-12-07 22:21:37 +07:00
;; surround.nvim
(global surround (require :surround))
(surround.setup
{:mappings_style "sandwich"
})
2021-07-10 04:05:30 +07:00
;; kommentary
(global kommentary (require :kommentary.config))
(kommentary.configure_language :default {:prefer_single_line_comments true})
(kommentary.configure_language :objcpp {:prefer_single_line_comments true})
;; lualine
(global lualine (require :lualine))
(lualine.setup
{:options {:theme :nightfly
:section_separators ["" ""]
:component_separators ["" ""]
:icons_enabled true}
:sections {:lualine_a {1 {1 :mode
:upper true}}
:lualine_b {1 {1 :branch
:icon ""}}
:lualine_c {1 {1 :filename
:file_status true}}
:lualine_x ["encoding" "fileformat" "filetype"]
:lualine_y ["progress"]
:lualine_z ["location"]}
:inactive_sections {:lualine_a {}
:lualine_b {}
:lualine_c ["filename"]
:lualine_x ["location"]
:lualine_y {}
:lualine_z {}}
:extensions ["fugitive"]})