dots-of-war/files/.config/nvim/fnl/init.fnl

155 lines
4.9 KiB
Text
Raw Normal View History

2021-04-03 14:14:56 +00:00
(module init
2021-05-08 18:51:05 +00:00
{autoload {utils utils
nvim aniseed.nvim
a aniseed.core
2021-05-08 20:24:53 +00:00
str aniseed.string
2021-05-08 18:51:05 +00:00
fennel aniseed.fennel
colors colors}
2021-05-01 13:20:02 +00:00
require-macros [macros]})
2021-04-03 18:34:15 +00:00
2021-05-03 20:16:55 +00:00
(macro make-errors-epic [f]
`(xpcall #,f #(a.println (fennel.traceback $1))))
2021-05-08 17:31:04 +00:00
(make-errors-epic (require "plugins"))
2021-05-06 18:54:55 +00:00
2021-05-03 20:16:55 +00:00
(make-errors-epic (require "plugins.lsp"))
2021-05-06 17:35:35 +00:00
(make-errors-epic (require "keybinds"))
2021-05-03 20:16:55 +00:00
2021-05-08 20:24:53 +00:00
; Basic setup --------------------------------------- foldstart
(vim-let mapleader "\\<Space>")
(vim-let maplocalleader ",")
(vim.cmd "filetype plugin indent on")
(vim.cmd "syntax on")
(set vim.o.showmode false)
(set vim.o.foldmethod "marker")
(set vim.o.undodir "~/.vim/undo-dir")
(set vim.o.undofile true)
(set vim.o.shortmess (.. vim.o.shortmess "c")) ; Don't give completion messages like 'match 1 of 2' or 'The only match'
(set vim.o.hidden true)
(set vim.o.encoding "utf-8")
(set vim.o.number false)
(set vim.o.relativenumber false)
(set vim.o.compatible false)
(set vim.o.cursorline true)
(set vim.o.incsearch true)
(set vim.o.hlsearch true)
(set vim.o.inccommand "nosplit")
(set vim.o.signcolumn "yes")
(set vim.o.shiftwidth 2)
(set vim.o.tabstop 2)
(set vim.o.backspace "indent,eol,start")
(set vim.o.autoindent true)
(set vim.o.smartindent true)
(set vim.o.expandtab true)
(set vim.o.wrap false)
(set vim.o.completeopt "longest,menuone,noselect")
(set vim.o.laststatus 2)
(set vim.o.showmode true)
(set vim.o.splitbelow true)
(set vim.o.splitright true)
(set vim.o.mouse "a")
(set vim.o.shell "bash")
(set vim.o.background "dark")
(when (vim.fn.has "termguicolors")
(set vim.o.termguicolors true))
(when (not (vim.fn.has "gui_running"))
(set vim.o.t_Co 256))
(vim.cmd "colorscheme gruvbox")
(vim-let &t_ut "")
(vim.cmd "autocmd! BufReadPost *.hs :set shiftwidth=2)")
(vim.cmd "autocmd! FileType vim setlocal foldmethod=marker")
;Disables automatic commenting on newline)
(vim.cmd "autocmd! FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o")
; Auto-close quickfix list when element is selected)
(vim.cmd "autocmd! FileType qf nnoremap <buffer> <CR> <CR>:cclose<CR>")
2021-05-02 11:54:58 +00:00
2021-05-08 20:24:53 +00:00
; foldend
2021-05-02 11:54:58 +00:00
; Colors ------------------------------------------------------- foldstart
(utils.highlight-add
2021-05-02 15:15:33 +00:00
["GruvboxBlueSign" "GruvboxAquaSign" "GruvboxRedSign" "GruvboxYellowSign" "GruvboxGreenSign" "GruvboxOrangeSign" "GruvboxPurpleSign"]
{:bg "NONE"})
2021-05-02 11:54:58 +00:00
2021-05-08 20:24:53 +00:00
; hide empty line ~'s
(utils.highlight :EndOfBuffer {:bg "NONE" :fg colors.dark0})
(utils.highlight :LineNr {:bg "NONE"})
(utils.highlight-add :Pmenu {:bg colors.dark0_hard})
(utils.highlight-add :PmenuSel {:bg colors.bright_aqua})
(utils.highlight-add :PmenuSbar {:bg colors.dark0_hard})
(utils.highlight-add :PmenuThumb {:bg colors.dark1})
(utils.highlight-add :NormalFloat {:bg colors.dark0_hard})
(utils.highlight-add :SignColumn {:bg colors.dark0})
(vim.cmd "highlight link Function GruvboxGreen")
2021-05-02 11:54:58 +00:00
; foldend
2021-05-01 13:20:02 +00:00
2021-05-08 20:24:53 +00:00
; Plugin config ----------------------- foldstart
(set vim.g.VM_leader "m") ; visual-multi leader
; rust.vim
(set vim.g.rust_clip_command "xclip -selection clipboard")
(set vim.g.rustfmt_autosave 1)
2021-04-30 14:26:31 +00:00
2021-05-08 20:24:53 +00:00
(set vim.g.conjure#client#fennel#aniseed#aniseed_module_prefix "aniseed.")
(set vim.g.vim_parinfer_filetypes ["carp" "fennel"])
; foldend
2021-04-30 16:23:38 +00:00
2021-05-02 10:32:09 +00:00
; :: and _ as space ------------------------------------------------------------------- foldstart
2021-04-23 14:46:45 +00:00
(var remapped-space nil)
(fn _G.RebindShit [newKey]
(set remapped-space {:old (vim.fn.maparg :<Space> :i)
:cur newKey})
(utils.keymap :i :<Space> newKey {:buffer true}))
2021-04-02 17:54:14 +00:00
2021-04-23 14:46:45 +00:00
(fn _G.UnbindSpaceStuff []
2021-05-02 15:15:33 +00:00
(when (and remapped-space (~= remapped-space {}))
2021-05-08 20:24:53 +00:00
(utils.del-keymap :i :<Space> true)
(when (~= remapped-space.old "")
(utils.keymap :i :<Space> remapped-space.old {:buffer true}))
(set remapped-space nil)))
2021-04-23 16:09:31 +00:00
2021-04-23 14:46:45 +00:00
(nvim.command "autocmd! InsertLeave * :call v:lua.UnbindSpaceStuff()")
(utils.keymap :n "<Tab>j" ":call v:lua.RebindShit('_')<CR>")
(utils.keymap :n "<Tab>k" ":call v:lua.RebindShit('::')<CR>")
(utils.keymap :i "<Tab>j" "<space><C-o>:call v:lua.RebindShit('_')<CR>")
(utils.keymap :i "<Tab>k" "<space><C-o>:call v:lua.RebindShit('::')<CR>")
(utils.keymap :n "ö" "a")
2021-04-18 10:03:50 +00:00
2021-05-02 10:32:09 +00:00
; foldend
2021-04-30 14:26:31 +00:00
2021-05-08 20:24:53 +00:00
; :: autoclose empty unnamed buffers ----------------------------------------------- foldstart
(fn _G.clean_no_name_empty_buffers []
(let [bufs (a.filter #(and (vim.api.nvim_buf_get_option $1 "buflisted")
(a.empty? (vim.fn.bufname $1))
(< (vim.fn.bufwinnr $1) 0)
(if (vim.api.nvim_buf_is_loaded $1)
(a.empty? (vim.api.nvim_buf_get_lines $1 0 -1 false))
false))
(vim.fn.range 1 (vim.api.nvim_buf_get_number "$")))]
(when (not (a.empty? bufs))
(nvim.command (.. "bd " (str.join " " bufs))))))
(nvim.command "autocmd! BufCreate * :call v:lua.clean_no_name_empty_buffers()")
; foldend
2021-05-02 11:03:31 +00:00
2021-05-08 20:24:53 +00:00
; vim:foldmarker=foldstart,foldend