Mercurial > dotfiles
comparison .chezmoitemplates/init.lua @ 529:735fb9e8e6cb
replace dirvish with dirbuf
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sat, 22 Jan 2022 16:08:24 +0100 |
parents | 793a6f9bc2cf |
children | e932c2076dba |
comparison
equal
deleted
inserted
replaced
528:9af6e508f630 | 529:735fb9e8e6cb |
---|---|
537 } | 537 } |
538 end, | 538 end, |
539 } | 539 } |
540 | 540 |
541 -- File navigation | 541 -- File navigation |
542 use { 'justinmk/vim-dirvish', opt = true } | 542 use { |
543 'elihunter173/dirbuf.nvim', | |
544 opt = true, | |
545 config = function() | |
546 require('dirbuf').setup { | |
547 hash_padding = 2, | |
548 show_hidden = true, | |
549 } | |
550 end, | |
551 } | |
543 | 552 |
544 -- Colorscheme | 553 -- Colorscheme |
545 use { | 554 use { |
546 'navarasu/onedark.nvim', | 555 'navarasu/onedark.nvim', |
547 config = function() | 556 config = function() |
579 | 588 |
580 -- Filetypes | 589 -- Filetypes |
581 use { 'lepture/vim-jinja' } | 590 use { 'lepture/vim-jinja' } |
582 end) | 591 end) |
583 | 592 |
584 vim.cmd [[ packadd vim-dirvish ]] | 593 vim.cmd [[ packadd dirbuf.nvim ]] |
585 | 594 |
586 -- Configuration | 595 -- Configuration |
587 local opt = vim.opt | 596 local opt = vim.opt |
588 | 597 |
589 opt.backspace = { 'indent', 'eol', 'start' } -- Backspace everything | 598 opt.backspace = { 'indent', 'eol', 'start' } -- Backspace everything |