Skip to content

Commit

Permalink
fix hgroups for incline
Browse files Browse the repository at this point in the history
  • Loading branch information
fbosch committed Dec 17, 2024
1 parent ce879a8 commit 96b34a0
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .config/btop/btop.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#? Config file for btop v. 1.3.2
#? Config file for btop v. 1.4.0

#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
Expand Down
2 changes: 1 addition & 1 deletion .config/fish/profile.fish
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ set -U FZF_PREVIEW_FILE_CMD "bat --paging=never --color=always --style=numbers -
set -U FZF_ENABLE_OPEN_PREVIEW 1
set -U FZF_PREVIEW_DIR_CMD lt
set -gx COREPACK_ENABLE_STRICT 0
set -U nvm_default_version "20.14.0"
set -U nvm_default_version 20
2 changes: 1 addition & 1 deletion .config/nvim/lua/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ vim.opt.autoread = true
vim.opt.foldcolumn = "1"
vim.o.foldenable = true
vim.opt.foldlevelstart = 0
vim.opt.foldmethod = "syntax"
vim.opt.foldmethod = "marker"
vim.opt.backspace = "indent,eol,start"
vim.wo.foldtext = ""
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
Expand Down
28 changes: 14 additions & 14 deletions .config/nvim/lua/plugins/editor/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,21 @@ return {
"WhoIsSethDaniel/mason-tool-installer.nvim",
{
"pmizio/typescript-tools.nvim",
ft = { "typescript", "typescriptreact", "javascript", "javascriptreact" },
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
opts = {},
config = function()
require("typescript-tools").setup({
on_attach = on_attach,
separate_diagnostic_server = true,
publish_diagnostic_on = "insert_leave",
complete_function_calls = false,
jsx_close_tag = {
enable = false,
filetypes = { "javascriptreact", "typescriptreact" },
},
})
end,
},
{ "yioneko/nvim-vtsls", ft = { "typescript", "typescriptreact" }, enabled = false },
{ "folke/neodev.nvim", ft = { "lua" }, opts = {} },
},
keys = {
Expand Down Expand Up @@ -184,19 +195,8 @@ return {
html = {},
marksman = {},
dockerls = {},
vtsls = {
enabled = false,
filetypes = {
"javascript",
"javascriptreact",
"javascript.jsx",
"typescript",
"typescriptreact",
"typescript.tsx",
},
},
tsserver = {
enabled = true,
enabled = false,
},
ts_ls = {
enabled = false,
Expand Down
5 changes: 4 additions & 1 deletion .config/nvim/lua/plugins/interface/incline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ return {
end
for name, icon in pairs(icons) do
if tonumber(signs[name]) and signs[name] > 0 then
table.insert(labels, { icon .. " " .. signs[name] .. " ", group = "Diff" .. name })
table.insert(labels, {
icon .. " " .. signs[name] .. " ",
group = "GitSigns" .. name,
})
end
end
if #labels > 0 then
Expand Down
12 changes: 12 additions & 0 deletions .config/nvim/spell/en.utf-8.add
Original file line number Diff line number Diff line change
Expand Up @@ -1290,3 +1290,15 @@ setprojectannotations
portable-stories
portable-stories-vitest
Leasingportalen
MARK
#region
messages
MARK
yml
ci
twMerge
udlånssag
generate
allocationId
ReducedTimeToMaturity
MSAL's
Binary file modified .config/nvim/spell/en.utf-8.add.spl
Binary file not shown.

0 comments on commit 96b34a0

Please sign in to comment.