Added gitsigns to nvim
This commit is contained in:
parent
ee15de8947
commit
b2fd17c30f
@ -9,3 +9,4 @@ require "user.treesitter"
|
|||||||
require "user.nvim-tree"
|
require "user.nvim-tree"
|
||||||
require "user.bufferline"
|
require "user.bufferline"
|
||||||
require "user.statusline"
|
require "user.statusline"
|
||||||
|
require "user.gitsigns"
|
||||||
|
48
nvim/.config/nvim/lua/user/gitsigns.lua
Normal file
48
nvim/.config/nvim/lua/user/gitsigns.lua
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
local status_ok, gitsigns = pcall(require, "gitsigns")
|
||||||
|
if not status_ok then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
gitsigns.setup {
|
||||||
|
signs = {
|
||||||
|
add = {hl = 'GitSignsAdd' , text = '│', numhl='GitSignsAddNr' , linehl='GitSignsAddLn'},
|
||||||
|
change = {hl = 'GitSignsChange', text = '│', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'},
|
||||||
|
delete = {hl = 'GitSignsDelete', text = '契', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'},
|
||||||
|
topdelete = {hl = 'GitSignsDelete', text = '契', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'},
|
||||||
|
changedelete = {hl = 'GitSignsChange', text = '~', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'},
|
||||||
|
},
|
||||||
|
signcolumn = true, -- Toggle with `:Gitsigns toggle_signs`
|
||||||
|
numhl = false, -- Toggle with `:Gitsigns toggle_numhl`
|
||||||
|
linehl = false, -- Toggle with `:Gitsigns toggle_linehl`
|
||||||
|
word_diff = false, -- Toggle with `:Gitsigns toggle_word_diff`
|
||||||
|
watch_gitdir = {
|
||||||
|
interval = 1000,
|
||||||
|
follow_files = true
|
||||||
|
},
|
||||||
|
attach_to_untracked = true,
|
||||||
|
current_line_blame = true, -- Toggle with `:Gitsigns toggle_current_line_blame`
|
||||||
|
current_line_blame_opts = {
|
||||||
|
virt_text = true,
|
||||||
|
virt_text_pos = 'right_align', -- 'eol' | 'overlay' | 'right_align'
|
||||||
|
delay = 1000,
|
||||||
|
ignore_whitespace = false,
|
||||||
|
},
|
||||||
|
current_line_blame_formatter_opts = {
|
||||||
|
relative_time = false,
|
||||||
|
},
|
||||||
|
sign_priority = 6,
|
||||||
|
update_debounce = 100,
|
||||||
|
status_formatter = nil, -- Use default
|
||||||
|
max_file_length = 40000,
|
||||||
|
preview_config = {
|
||||||
|
-- Options passed to nvim_open_win
|
||||||
|
border = 'single',
|
||||||
|
style = 'minimal',
|
||||||
|
relative = 'cursor',
|
||||||
|
row = 0,
|
||||||
|
col = 1
|
||||||
|
},
|
||||||
|
yadm = {
|
||||||
|
enable = false
|
||||||
|
},
|
||||||
|
}
|
@ -38,10 +38,10 @@ keymap("n", "<C-+>", "<C-}>", opts)
|
|||||||
|
|
||||||
-- Normal --
|
-- Normal --
|
||||||
-- Better window navigation
|
-- Better window navigation
|
||||||
keymap("n", "<leader>h", "<C-w>h", opts)
|
keymap("n", "<C-h>", "<C-w>h", opts)
|
||||||
keymap("n", "<leader>j", "<C-w>j", opts)
|
keymap("n", "<C-j>", "<C-w>j", opts)
|
||||||
keymap("n", "<leader>k", "<C-w>k", opts)
|
keymap("n", "<C-k>", "<C-w>k", opts)
|
||||||
keymap("n", "<leader>l", "<C-w>l", opts)
|
keymap("n", "<C-l>", "<C-w>l", opts)
|
||||||
|
|
||||||
keymap("n", "<leader>e", ":NvimTreeToggle<cr>", opts)
|
keymap("n", "<leader>e", ":NvimTreeToggle<cr>", opts)
|
||||||
|
|
||||||
@ -82,6 +82,7 @@ keymap("x", "<A-k>", ":move '<-2<CR>gv-gv", opts)
|
|||||||
|
|
||||||
-- Terminal --
|
-- Terminal --
|
||||||
-- Better terminal navigation
|
-- Better terminal navigation
|
||||||
|
keymap("t", "<Esc>", "<C-\\><C-n>", term_opts)
|
||||||
keymap("t", "<C-h>", "<C-\\><C-N><C-w>h", term_opts)
|
keymap("t", "<C-h>", "<C-\\><C-N><C-w>h", term_opts)
|
||||||
keymap("t", "<C-j>", "<C-\\><C-N><C-w>j", term_opts)
|
keymap("t", "<C-j>", "<C-\\><C-N><C-w>j", term_opts)
|
||||||
keymap("t", "<C-k>", "<C-\\><C-N><C-w>k", term_opts)
|
keymap("t", "<C-k>", "<C-\\><C-N><C-w>k", term_opts)
|
||||||
|
@ -33,6 +33,7 @@ local options = {
|
|||||||
scrolloff = 8, -- is one of my fav
|
scrolloff = 8, -- is one of my fav
|
||||||
sidescrolloff = 8,
|
sidescrolloff = 8,
|
||||||
guifont = "monospace:h17", -- the font used in graphical neovim applications
|
guifont = "monospace:h17", -- the font used in graphical neovim applications
|
||||||
|
list = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
vim.opt.shortmess:append "c"
|
vim.opt.shortmess:append "c"
|
||||||
@ -43,3 +44,4 @@ end
|
|||||||
|
|
||||||
vim.cmd "set whichwrap+=<,>,[,],h,l"
|
vim.cmd "set whichwrap+=<,>,[,],h,l"
|
||||||
vim.cmd [[set iskeyword+=-]]
|
vim.cmd [[set iskeyword+=-]]
|
||||||
|
vim.cmd "set listchars=space:·"
|
||||||
|
@ -87,6 +87,11 @@ return packer.startup(function(use)
|
|||||||
config = function() require'nvim-tree'.setup {} end
|
config = function() require'nvim-tree'.setup {} end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
use {
|
||||||
|
'lewis6991/gitsigns.nvim',
|
||||||
|
}
|
||||||
|
|
||||||
-- Bufferline
|
-- Bufferline
|
||||||
use "akinsho/bufferline.nvim"
|
use "akinsho/bufferline.nvim"
|
||||||
use "moll/vim-bbye"
|
use "moll/vim-bbye"
|
||||||
|
Loading…
Reference in New Issue
Block a user