Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
SingularisArt committed Nov 23, 2023
1 parent 93fc2a6 commit 6134c94
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 14 deletions.
3 changes: 2 additions & 1 deletion aspects/dotfiles/files/.config/polybar/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ font-8 = "Siji:style=Regular:pixelsize=7.8;2"

modules-left = bspwm current-course
modules-center = class-info
modules-right = mpd battery mail pulseaudio date
; modules-right = mpd battery mail pulseaudio date
modules-right = battery mail pulseaudio date

; vim:ft=dosini
Binary file modified aspects/dotfiles/files/.local/share/autojump/autojump.txt
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/autojump/autojump.txt.bak
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/newsboat/cache.db
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/zathura/history
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/zathura/input-history
Binary file not shown.
26 changes: 14 additions & 12 deletions aspects/nvim/files/.config/nvim/lua/modules/lang/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ local treesitter_obj = function()
enable = false
end

require("nvim-treesitter.configs").setup({
vim.g.skip_ts_context_commentstring_module = true

require("ts_context_commentstring").setup({
indent = { enable = enable },
context_commentstring = { enable = enable },
incremental_selection = {
Expand All @@ -72,41 +74,41 @@ local treesitter_obj = function()
keymaps = {
["af"] = "@function.outer",
["if"] = "@function.inner",
}
},
},
move = {
enable = true,
set_jumps = true,
goto_next_start = {
["]m"] = "@function.outer",
["]]"] = "@class.outer"
["]]"] = "@class.outer",
},
goto_next_end = {
["]M"] = "@function.outer",
["]["] = "@class.outer"
["]["] = "@class.outer",
},
goto_previous_start = {
["[m"] = "@function.outer",
["[["] = "@class.outer"
["[["] = "@class.outer",
},
goto_previous_end = {
["[M"] = "@function.outer",
["[]"] = "@class.outer"
}
["[]"] = "@class.outer",
},
},
swap = {
enable = true,
swap_next = {["[n"] = "@parameter.inner"},
swap_previous = {["]p"] = "@parameter.inner"}
swap_next = { ["[n"] = "@parameter.inner" },
swap_previous = { ["]p"] = "@parameter.inner" },
},
lsp_interop = {
enable = true,
border = "rounded",
peek_definition_code = {
["<Leader>ldp"] = "@class.outer"
}
["<Leader>ldp"] = "@class.outer",
},
},
}
},
})
end

Expand Down
7 changes: 6 additions & 1 deletion aspects/nvim/files/.config/nvim/lua/modules/lsp/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ function config.navigator()
height = 0.3,
preview_height = 0.35,
border = { "", "", "", "", "", "", "", "" },
ts_fold = false,
ts_fold = {
enable = false,
-- comment_fold = true,
-- max_lines_scan_comments = 20,
-- disable_filetypes = { "help", "guihua", "text" },
},
default_mapping = false,
treesitter_analysis = true,
transparency = 50,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ return function(use)
config = function()
require("neodev").setup()
end,
ft = "lua",
},
{
"williamboman/mason-lspconfig.nvim",
Expand Down
1 change: 1 addition & 0 deletions aspects/nvim/files/.config/nvim/spell/en.utf-8.add
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,4 @@ adjugate
Shor's
eigenspace
eigenspaces
filetypes
Binary file modified aspects/nvim/files/.config/nvim/spell/en.utf-8.add.spl
Binary file not shown.

0 comments on commit 6134c94

Please sign in to comment.