Skip to content

Commit 808127e

Browse files
committedAug 6, 2024
new venv api + delta
1 parent 56b497c commit 808127e

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
 

‎.gitconfig

+14
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@
1111

1212
[core]
1313
editor = nvim
14+
pager = delta
15+
16+
[interactive]
17+
diffFilter = delta --color-only
18+
19+
[delta]
20+
navigate = true
21+
side-by-side = true
22+
23+
[merge]
24+
conflictstyle = diff3
25+
26+
[diff]
27+
colorMoved = default
1428

1529
[commit]
1630
gpgsign = true

‎nvim/lua/plugins/lualine_conf.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local function venv()
2-
local fullPath = require("venv-selector").get_active_venv()
2+
local fullPath = require("venv-selector").venv()
33
if not fullPath then
44
return ""
55
end

0 commit comments

Comments
 (0)
Please sign in to comment.