add fzf to neovim

pull/2/head
Alpha Chen 2 years ago
parent ae3f627501
commit 1e04d57734

@ -1,15 +1,35 @@
(vim.cmd "colorscheme paramount")
(set vim.opt.list true)
(set vim.opt.listchars "tab:\\u21e5 ,trail:\\u2423,extends:\\u21c9,precedes:\\u21c7,nbsp:\\u00b7")
(set vim.opt.listchars {:tab "\\u21e5 "
:trail "\\u2423"
:extends "\\u21c9"
:precedes "\\u21c7"
:nbsp "\\u00b7"})
(set vim.opt.number true)
(set vim.g.mapleader " ")
; (let [{: keymap} vim
; nnoremap #(keymap.set :n $1 $2 {:noremap true})
; inoremap #(keymap.set :i $1 $2 {:noremap true})]
; ; clear hl
; (nnoremap :<leader>/ ":nohlsearch<cr>")
; ; quick save
; (nnoremap "\\\\" ":write<cr>")
; (inoremap "\\\\" "<esc>:write<cr>")
; ; fzf
; (nnoremap :<leader>b ":Buffers<cr>")
; (nnoremap :<leader>f ":Files<cr>")
; (nnoremap :<leader>t ":Tags<cr>"))
(vim.keymap.set :n "\\\\" ":write<cr>" {:noremap true})
(vim.keymap.set :i "\\\\" "<esc>:write<cr>" {:noremap true})
(vim.keymap.set :n :<leader>/ ":nohlsearch<cr>" opts)
(vim.keymap.set :n :<leader>/ ":nohlsearch<cr>" {:noremap true})
;; restore cursor location
;;
@ -17,10 +37,9 @@
(let [{: nvim_command : nvim_create_autocmd : nvim_create_augroup} vim.api
au-group (nvim_create_augroup :nvim-startup {})
cb (fn []
(when (and
(>= (vim.fn.line "'\"") 1)
(when (and (>= (vim.fn.line "'\"") 1)
(<= (vim.fn.line "'\"") (vim.fn.line "$"))
(not (string.find vim.bo.filetype "commit")))
(not (string.find vim.bo.filetype :commit)))
(nvim_command "normal! g`\"")))]
;; when restoring the cursor, we want to ignore commit filetypes, so
;; we need to manually enable filetype detection to set up those
@ -43,6 +62,26 @@
(set vim.g.ale_fix_on_save 1)
(set vim.g.ale_floating_preview 1)
;; fzf
(when (vim.fn.executable :fzf)
(when (vim.fn.isdirectory :/opt/homebrew/opt/fzf/plugin)
(vim.opt.rtp:append :/opt/homebrew/opt/fzf))
(vim.keymap.set :n :<leader>b ":Buffers<cr>" {:noremap true})
(vim.keymap.set :n :<leader>f ":Files<cr>" {:noremap true})
(vim.keymap.set :n :<leader>t ":Tags<cr>" {:noremap true})
; https://coreyja.com/vim-spelling-suggestions-fzf/
(let [{: nvim_command : nvim_create_user_command} vim.api
{: expand : spellsuggest} vim.fn
fzf-run (. vim.fn "fzf#run")
sink #(nvim_command (.. "normal! \"_ciw" $1))
fzf-spell #(fzf-run {:source (spellsuggest (expand :<cword>))
: sink
:window {:width 0.9 :height 0.6}})]
(nvim_create_user_command :FzfSpell fzf-spell {})
(vim.keymap.set :n :z= ":FzfSpell<cr>")))
;; lspconfig
; (let [opts {:noremap true :silent true}]
; (vim.keymap.set :n :<leader>e vim.diagnostic.open_float opts)

3
.gitmodules vendored

@ -168,3 +168,6 @@
[submodule ".local/share/nvim/site/pack/kejadlen/start/ale"]
path = .local/share/nvim/site/pack/kejadlen/start/ale
url = https://github.com/dense-analysis/ale.git
[submodule ".local/share/nvim/site/pack/kejadlen/start/fzf"]
path = .local/share/nvim/site/pack/kejadlen/start/fzf
url = https://github.com/junegunn/fzf.vim.git

@ -0,0 +1 @@
Subproject commit c311c0a95fc2529c26ab36a8f530e9dd4426304c
Loading…
Cancel
Save