Skip to content

Commit

Permalink
fix(neovim): ignore possible binary files as an ad hoc fix notational…
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Hobl committed Jun 22, 2021
1 parent adfa13f commit 667d8a4
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions dots/.config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -512,13 +512,15 @@ end

if hasPlugin('notational-fzf-vim') then
map.g('n', '<Leader>l', ':NV<CR>', { silent = true })
var.g({ nv_search_paths = {
'~/Dropbox/'..NOTATIONAL_FOLDER..'/wiki',
-- '~/Dropbox/'..NOTATIONAL_FOLDER..'/dendron-org-private',
'~/Dropbox/journal',
'~/Dropbox/notes',
'~/Dropbox/drafts'
}
var.g({
nv_search_paths = {
'~/Dropbox/'..NOTATIONAL_FOLDER..'/wiki',
'~/Dropbox/'..NOTATIONAL_FOLDER..'/dendron-org-private',
'~/Dropbox/journal',
'~/Dropbox/notes',
'~/Dropbox/drafts'
},
nv_ignore_pattern = { 'assets', '.git' }
})
end

Expand Down

0 comments on commit 667d8a4

Please sign in to comment.