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