This commit is contained in:
Ali Can Zeybek
2023-08-09 16:27:14 +03:00
parent 8a6816da0e
commit 6d8f231fd3
9 changed files with 614 additions and 3 deletions

View File

@@ -52,6 +52,7 @@ return packer.startup(function(use)
-- snippets
use "L3MON4D3/LuaSnip" --snippet engine
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
use "honza/vim-snippets"
-- LSP
use "neovim/nvim-lspconfig" -- enable LSP
@@ -82,4 +83,18 @@ return packer.startup(function(use)
if PACKER_BOOTSTRAP then
require("packer").sync()
end
--rust
use 'simrat39/rust-tools.nvim'
--vimwiki
use {
'vimwiki/vimwiki',
config = function()
vim.g.vimwiki_ext2syntax = {
['.md'] = 'markdown',
['.markdown'] = 'markdown',
['.mdown'] = 'markdown',
}
end
}
end)