Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
SingularisArt committed Jul 27, 2024
1 parent 790e6ce commit 51f51ad
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aspects/dotfiles/files/.config/tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ bind-key -T copy-mode-vi Escape send-keys -X cancel
# Cheat Sheet
bind-key -r i run-shell 'tmux new-window -c "#{pane_current_path}" "tmux rename-window \"Cheat Sheet\"; ~/.local/bin/tmux/tmux-cht"'

# Open nmtui for internet connection
bind-key n run-shell 'tmux new-window -c "#{pane_current_path}" "tmux rename-window \"Internet Connection\"; nmtui"'

# Create commonly used tmux sessions.
bind-key -r a run-shell 'tmux new-window -c "#{pane_current_path}" "tmux rename-window \"Project Search\"; ~/.local/bin/tmux/tmux-sessionizer"'

Expand Down
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/bookmarks.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion aspects/nvim/files/.config/nvim/lua/config/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function Lazyload()
loader("null-ls.nvim")
loader("mason.nvim")
loader("lsp_lines.nvim")
loader("lspsaga.nvim")
-- loader("lspsaga.nvim")
loader("neogen")
loader("indent-blankline.nvim")

Expand Down
5 changes: 4 additions & 1 deletion aspects/nvim/files/.config/nvim/lua/modules/lsp/handlers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ lsp.on_attach = function(client, bufnr)
end

require("inlay-hints").on_attach(client, bufnr)
lsp.setup_codelens_refresh(client, bufnr)
-- Check if the filetype is TelescopePrompt. If it isn't, then load the codelens
if vim.bo.filetype ~= "TelescopePrompt" then
lsp.setup_codelens_refresh(client, bufnr)
end
lsp.attach_mappings(client, bufnr)

if client.name == "sqls" then
Expand Down

0 comments on commit 51f51ad

Please sign in to comment.