(let [cmp (require :cmp) luasnip (require :luasnip)] {:options (fn [] (set vim.g.mapleader " ") (set vim.g.maplocalleader "\\") (set vim.o.termguicolors true) (set vim.o.clipboard :unnamedplus) (set vim.o.wrap false) (set vim.opt.colorcolumn "80,120") (vim.cmd.colorscheme :everforest) (set vim.o.formatoptions :tncro) (set vim.o.conceallevel 2) (set vim.o.splitbelow true) (set vim.o.splitright true) (set vim.opt.swapfile false)) :keymap (fn [] (let [nmap #(vim.keymap.set :n $1 $2 {:desc $3}) tmap #(vim.keymap.set :t $1 $2 {:desc (.. $3 " (from a terminal)")})] (nmap : :h "Move to window left") (tmap : :h "Move to window left") (nmap : :j "Move to window down") (tmap : :j "Move to window down") (nmap : :k "Move to window up") (tmap : :k "Move to window up") (nmap : :l "Move to window right") (tmap : :l "Move to window right") (tmap : "" "Escape to normal mode") (vim.api.nvim_create_autocmd [:BufWinEnter :WinEnter] {:pattern "term://*" :command "startinsert"}) ;; Start terminals in insert mode (nmap : : "Toggle alternate-file") (nmap : ":bn|bd!#" "Delete a buffer without removing the split") (nmap :tt ":termi" "Open a terminal in the current window") (nmap :to ":new term://bash|resize 8" "Open an 8 line terminal below the current window") (nmap :w :80| "Set the window width to 80 characters") (nmap :W :120| "Set the window width to 120 characters") (nmap : ":tabnew" "Create a new tab page") (tmap : ":tabnew" "Create a new tab page") (nmap : :gt "Go to next tab (cyclical)") (tmap : "gt" "Go to next tab (cyclical)") (nmap :jt #(vim.cmd (.. "vsplit ~/TDC-Obsidian/Journal/" (os.date "%Y") "/" (os.date "%m") "/" (os.date "%Y-%m-%d") ".md" "|$") "Open today's journal")) (nmap :o ":Telescope find_files" "Search filenames in :pwd") (nmap :b ":Telescope buffers" "Search open buffers") (nmap :s ":Telescope live_grep" "Search current buffer") (nmap :e ":Telescope emoji" "Search for an emoji to copy to clipboard") (nmap :gs ":vsplit term://tig" "Open tig(1) to stage and commit changes") (let [duck (require :duck)] (nmap : #(duck.hatch) "hatch a duck") (nmap :dk #(duck.cook) "cook a duck")))) :treesitter-languages [:c :lua :vim :vimdoc :query :fennel :racket] :language-servers {:lua_ls {:filetypes [:lua] :Lua {:workspace {:checkThirdParty false}} :telemetry {:enable false} :diagnostics {:globals [:vim]}} :fennel_language_server {:filetypes [:fennel] :fennel {:workspace {:library (vim.api.nvim_list_runtime_paths)} :diagnostics {:globals [:vim]}}} :bashls {:filetypes [:bash]} :marksman {:filetypes [:markdown]}} :lsp-attach (fn [_ bufnr] (let [nmap #(vim.keymap.set :n $1 $2 {:buffer bufnr :desc (.. "LSP: " $3)}) telescope (require :telescope.builtin)] (nmap :gd vim.lsp.buf.definition "[G]o to [D]efiniton") (nmap :gr telescope.lsp_references "[G]o to [R]eferences") (nmap :gI vim.lsp.buf.implementation "[G]o to [I]mplementation"))) :cmp-mapping {: (cmp.mapping.select_next_item) : (cmp.mapping.select_prev_item) : (cmp.mapping.scroll_docs -4) : (cmp.mapping.scroll_docs 4) : (cmp.mapping.complete) : (cmp.mapping.confirm {:behavior cmp.ConfirmBehavior.Replace :select true}) : (cmp.mapping (fn [fallback] (if (cmp.visible) (cmp.select_prev_item) (luasnip.expand_or_locally_jumpable) (luasnip.expand_or_jump) (fallback))) [:i :s]) : (cmp.mapping (fn [fallback] (if (cmp.visible) (cmp.select_prev_item) (luasnip.locally_jumpable -1) (luasnip.jump -1) (fallback))) [:i :s])}})