feat: add vim-fetch and update config
This commit is contained in:
parent
5b1b223636
commit
5aa5ad219a
3 changed files with 5 additions and 2 deletions
|
|
@ -17,7 +17,7 @@ require'nvim-treesitter.configs'.setup {
|
||||||
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
-- 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.
|
-- 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
|
-- Instead of true it can also be a list of languages
|
||||||
additional_vim_regex_highlighting = { "php", "twig" }
|
additional_vim_regex_highlighting = { "php", "twig", "svelte" }
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ return require("packer").startup(function(use)
|
||||||
-- Packer can manage itself
|
-- Packer can manage itself
|
||||||
use "wbthomason/packer.nvim"
|
use "wbthomason/packer.nvim"
|
||||||
|
|
||||||
|
use "wsdjeg/vim-fetch"
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"nvim-telescope/telescope.nvim", tag = "0.1.0",
|
"nvim-telescope/telescope.nvim", tag = "0.1.0",
|
||||||
requires = { {"nvim-lua/plenary.nvim"} }
|
requires = { {"nvim-lua/plenary.nvim"} }
|
||||||
|
|
|
||||||
|
|
@ -27,5 +27,6 @@ vim.opt.isfname:append("@-@")
|
||||||
|
|
||||||
vim.opt.updatetime = 50
|
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)
|
vim.api.nvim_set_var('bujo#window_width', 60)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue