Skip to content

Commit a402acc

Browse files
committed
feat: change to exact nvim directories
1 parent e04ea7b commit a402acc

21 files changed

+11
-5
lines changed

dot_gitconfig.tmpl

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@
8484
colorMoved = default
8585
{{- end }}
8686

87+
[diff "lockb"]
88+
textconv = bun
89+
binary = true
90+
8791
[gpg]
8892
format = ssh
8993

private_dot_config/exact_nvim/lua/community.lua private_dot_config/exact_nvim/exact_lua/community.lua

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ return {
99
{ import = "astrocommunity.pack.markdown" },
1010
{ import = "astrocommunity.pack.svelte" },
1111
{ import = "astrocommunity.pack.tailwindcss" },
12+
{ import = "astrocommunity.pack.typescript-all-in-one" },
1213
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---@type LazySpec
2+
return {
3+
"edgedb/edgedb-vim",
4+
}

private_dot_config/exact_nvim/lua/plugins/markdown.lua private_dot_config/exact_nvim/exact_lua/exact_plugins/headlines.lua

+1-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@ return {
99
headline_highlights = {},
1010
-- disable bullets for now. See https://github.com/lukas-reineke/headlines.nvim/issues/66
1111
bullets = {},
12+
fat_headlines = false,
1213
}
13-
for i = 1, 6 do
14-
local hl = "Headline" .. i
15-
vim.api.nvim_set_hl(0, hl, { link = "Headline", default = true })
16-
table.insert(opts[ft].headline_highlights, hl)
17-
end
1814
end
1915
return opts
2016
end,

private_dot_config/exact_nvim/lua/plugins/mason.lua private_dot_config/exact_nvim/exact_lua/exact_plugins/mason.lua

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ return {
99
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, {
1010
"ansiblels",
1111
"bashls",
12+
"denols",
1213
"helm_ls",
1314
"jsonls",
1415
"lua_ls",

0 commit comments

Comments
 (0)