Skip to content

Commit 14e7dd7

Browse files
committed
Small change
1 parent 3650403 commit 14e7dd7

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

vim/lua/lsp_config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ end
4848

4949
-- Use a loop to conveniently both setup defined servers
5050
-- and map buffer local keybindings when the language server attaches
51-
local servers = { "solargraph", "pyls", "jedi_language_server", "tsserver" }
51+
local servers = { "solargraph", "pylsp", "jedi_language_server", "tsserver" }
5252
for _, lsp in ipairs(servers) do
5353
nvim_lsp[lsp].setup { on_attach = on_attach }
5454
end

vim/lua/neo_git_config.lua

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ neogit.setup {
99
disable_commit_confirmation = false,
1010
-- customize displayed signs
1111
signs = {
12-
-- { CLOSED, OPENED }
13-
section = { ">", "v" },
14-
item = { ">", "v" },
15-
hunk = { "", "" },
12+
-- { CLOSED, OPENED }並ﴴ 
13+
section = { "", "" },
14+
item = { "", "" },
15+
hunk = { "+", "-" },
1616
},
1717
integrations = {
1818
diffview = true
@@ -22,8 +22,9 @@ neogit.setup {
2222
-- modify status buffer mappings
2323
status = {
2424
-- Adds a mapping with "B" as key that does the "BranchPopup" command
25-
["B"] = "BranchPopup",
26-
["R"] = "RefreshBuffer",
25+
["l"] = "LogPopup",
26+
["x"] = "",
27+
["X"] = "Discard",
2728
}
2829
}
2930
}

0 commit comments

Comments
 (0)