Compare commits
No commits in common. "3c8fa4795e873f0449e53cc8cca4c864d7586df5" and "17e44a63387ff890f488a9a04cc8d63a52a05268" have entirely different histories.
3c8fa4795e
...
17e44a6338
29
nvimrc
29
nvimrc
@ -76,6 +76,7 @@ set dictionary=/usr/share/dict/words
|
||||
set thesaurus=$HOME/Documents/thesaurus/thesaurus_pkg/thesaurus.txt
|
||||
set shortmess+=I
|
||||
set updatetime=250
|
||||
set pastetoggle=<f2>
|
||||
set pumheight=200
|
||||
" Required for nvim-compe:
|
||||
set complete-=i
|
||||
@ -293,9 +294,7 @@ packadd! fzf.vim " https://github.com/junegunn/fzf.vim.git
|
||||
packadd! vim-surround " https://github.com/tpope/vim-surround.git
|
||||
packadd! vim-rhubarb " https://github.com/tpope/vim-rhubarb.git
|
||||
packadd! editorconfig-vim " https://github.com/editorconfig/editorconfig-vim.git
|
||||
|
||||
packadd! nvim-spider " https://github.com/chrisgrieser/nvim-spider.git
|
||||
lua require "spider_config"
|
||||
packadd! vim-wordmotion " https://github.com/chaoren/vim-wordmotion.git
|
||||
|
||||
" projectionist
|
||||
packadd! vim-projectionist " https://github.com/tpope/vim-projectionist.git
|
||||
@ -310,28 +309,10 @@ let g:projectionist_heuristics = {
|
||||
\ "type": "source",
|
||||
\ "alternate": "{}_test.go",
|
||||
\ },
|
||||
\ },
|
||||
\ "*.rb": {
|
||||
\ "app/*.rb": {
|
||||
\ "type": "source",
|
||||
\ "alternate": "spec/{}_spec.rb",
|
||||
\ },
|
||||
\ "lib/*.rb": {
|
||||
\ "type": "source",
|
||||
\ "alternate": "spec/lib/{}_spec.rb",
|
||||
\ },
|
||||
\ "spec/*_spec.rb": {
|
||||
\ "type": "source",
|
||||
\ "alternate": "app/{}.rb",
|
||||
\ },
|
||||
\ "spec/lib/*_spec.rb": {
|
||||
\ "type": "source",
|
||||
\ "alternate": "lib/{}.rb",
|
||||
\ },
|
||||
\ },
|
||||
\ "etc/rbenv.d/*.bash": {"type": "hook"}
|
||||
\ }
|
||||
nnoremap <leader>a :A<cr>
|
||||
nnoremap <leader>A :AV<cr>
|
||||
\ }
|
||||
nnoremap <leader>A :A<cr>
|
||||
|
||||
" aerial
|
||||
packadd! aerial.nvim " https://github.com/stevearc/aerial.nvim.git
|
||||
|
@ -6,4 +6,5 @@ require("aerial").setup({
|
||||
autojump = true,
|
||||
nerd_font = "auto",
|
||||
})
|
||||
vim.keymap.set("n", "<leader>a", "<cmd>AerialToggle!<CR>")
|
||||
vim.keymap.set("n", "<leader>ds", "<cmd>call aerial#fzf()<CR>")
|
||||
|
@ -1,20 +0,0 @@
|
||||
require('spider').setup({})
|
||||
|
||||
vim.keymap.set(
|
||||
{ "n", "o", "x" },
|
||||
"w",
|
||||
"<cmd>lua require('spider').motion('w')<CR>",
|
||||
{ desc = "Spider-w" }
|
||||
)
|
||||
vim.keymap.set(
|
||||
{ "n", "o", "x" },
|
||||
"e",
|
||||
"<cmd>lua require('spider').motion('e')<CR>",
|
||||
{ desc = "Spider-e" }
|
||||
)
|
||||
vim.keymap.set(
|
||||
{ "n", "o", "x" },
|
||||
"b",
|
||||
"<cmd>lua require('spider').motion('b')<CR>",
|
||||
{ desc = "Spider-b" }
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user