Added fugative
This commit is contained in:
parent
69d1645b12
commit
75c09be85f
2 changed files with 8 additions and 3 deletions
|
|
@ -9,7 +9,7 @@ return require("packer").startup(function(use)
|
|||
requires = { {"nvim-lua/plenary.nvim"} }
|
||||
}
|
||||
|
||||
-- Treesitter (I use mainly for syntax highlighting)
|
||||
-- Treesittep
|
||||
use({"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"})
|
||||
|
||||
-- VSCode-like theme
|
||||
|
|
@ -18,7 +18,7 @@ return require("packer").startup(function(use)
|
|||
commit = "db9ee33"
|
||||
}
|
||||
|
||||
-- Left-side file tryy dispaly
|
||||
-- Left-side file tree dispaly
|
||||
use {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
requires = {
|
||||
|
|
@ -27,7 +27,7 @@ return require("packer").startup(function(use)
|
|||
tag = "nightly" -- optional, updated every week
|
||||
}
|
||||
|
||||
-- Shows current code on bottom of screen
|
||||
-- Shows current mode on bottom of screen
|
||||
use "itchyny/lightline.vim"
|
||||
|
||||
-- LSP
|
||||
|
|
@ -54,6 +54,9 @@ return require("packer").startup(function(use)
|
|||
}
|
||||
}
|
||||
|
||||
-- Git wrapper
|
||||
use("tpope/vim-fugitive")
|
||||
|
||||
-- Latex editing in vim
|
||||
use "lervag/vimtex"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue