[NeoVim] Clean plugins settings
This commit is contained in:
20
.config/nvim/fnl/settings/general.fnl
Normal file
20
.config/nvim/fnl/settings/general.fnl
Normal file
@@ -0,0 +1,20 @@
|
||||
(import-macros {: g! : set!} :hibiscus.vim)
|
||||
|
||||
(g! :maplocalleader ",")
|
||||
(set! :clipboard "unnamedplus")
|
||||
(set! :expandtab true)
|
||||
(set! :fileencoding "utf-8")
|
||||
(set! :ignorecase true)
|
||||
(set! :mouse "a")
|
||||
(set! :showmode false)
|
||||
(set! :number true)
|
||||
(set! :shiftwidth 2)
|
||||
(set! :signcolumn "yes")
|
||||
(set! :smartcase true)
|
||||
(set! :spelllang "en")
|
||||
(set! :tabstop 2)
|
||||
|
||||
; Startup
|
||||
(if (or (= (vim.fn.expand "%") "") (not= (vim.fn.isdirectory (vim.fn.expand "%")) 0))
|
||||
((. (require :neo-tree.command) :_command) (vim.fn.getcwd))
|
||||
((. (require :neo-tree.command) :_command) "show" (vim.fn.getcwd)))
|
||||
Reference in New Issue
Block a user