chore: latest vimming
This commit is contained in:
parent
92bd99d8ea
commit
cc99d55125
4 changed files with 32 additions and 10 deletions
|
|
@ -12,14 +12,21 @@ end
|
|||
local packer_bootstrap = ensure_packer()
|
||||
|
||||
return require("packer").startup(function(use)
|
||||
use "goolord/alpha-nvim"
|
||||
|
||||
use "wbthomason/packer.nvim"
|
||||
|
||||
-- QML syntax highlighting
|
||||
use "peterhoeg/vim-qml"
|
||||
|
||||
-- Terminal file manager support
|
||||
use "DreamMaoMao/yazi.nvim"
|
||||
|
||||
-- Coq support
|
||||
use "whonore/Coqtail"
|
||||
|
||||
-- Dashboard buffer
|
||||
use "goolord/alpha-nvim"
|
||||
|
||||
-- Show valid keys mid key chord
|
||||
use {
|
||||
"folke/which-key.nvim",
|
||||
config = function()
|
||||
|
|
@ -118,12 +125,6 @@ return require("packer").startup(function(use)
|
|||
-- Auto comment
|
||||
use "numToStr/Comment.nvim"
|
||||
|
||||
-- Markdown
|
||||
use({
|
||||
"agryphus/markdown-preview.nvim",
|
||||
run = function() vim.fn["mkdp#util#install"]() end,
|
||||
})
|
||||
|
||||
-- Jupyter notebook integration
|
||||
-- use {
|
||||
-- "glacambre/firenvim",
|
||||
|
|
|
|||
|
|
@ -21,6 +21,12 @@ autocmd("bufenter", {
|
|||
end,
|
||||
})
|
||||
|
||||
vim.filetype.add({
|
||||
extension = {
|
||||
typ = 'typst'
|
||||
}
|
||||
})
|
||||
|
||||
-- Only search with case if capital letter is typed
|
||||
vim.opt.ignorecase = true
|
||||
vim.opt.smartcase = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue