feat: add vim-fetch and update config

This commit is contained in:
Simon Lasbrugnas 2023-08-16 01:17:55 +02:00
parent 5b1b223636
commit 5aa5ad219a
Signed by untrusted user who does not match committer: simon
GPG key ID: 86039876BA6ED8DE
3 changed files with 5 additions and 2 deletions

View file

@ -17,7 +17,7 @@ require'nvim-treesitter.configs'.setup {
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
additional_vim_regex_highlighting = { "php", "twig" }
additional_vim_regex_highlighting = { "php", "twig", "svelte" }
},
}

View file

@ -7,6 +7,8 @@ return require("packer").startup(function(use)
-- Packer can manage itself
use "wbthomason/packer.nvim"
use "wsdjeg/vim-fetch"
use {
"nvim-telescope/telescope.nvim", tag = "0.1.0",
requires = { {"nvim-lua/plenary.nvim"} }

View file

@ -27,5 +27,6 @@ vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50
-- bujo window width
-- vim-bujo settings
vim.api.nvim_set_var('bujo#todo_file_path', os.getenv('HOME') .. '/.bujo')
vim.api.nvim_set_var('bujo#window_width', 60)