Compare commits

...

5 commits

Author SHA1 Message Date
Sanchayan Maity 6f398db9a4
tmuxp: Start scratch GStreamer pane in GitSources 2024-05-06 19:22:01 +05:30
Sanchayan Maity 420d643338
nvim: lsp: Inlay hints API has changed
With the recent change to the API, without passing buffer number as
0 for the current buffer, inlay hints gets enabled for all buffers.
2024-05-06 19:22:01 +05:30
Sanchayan Maity 65e5721a5a
ncmpcpp: Disable mouse support, screen switcher & tag editor 2024-05-06 19:22:01 +05:30
Sanchayan Maity a52037d68e
fish: functions: Add an alias for system update 2024-05-06 19:22:01 +05:30
Sanchayan Maity 734e0e8182
Revert "tmuxp: Add a tmux pane for running top"
This reverts commit 9b8fbd6f21.
2024-05-06 19:22:01 +05:30
5 changed files with 12 additions and 7 deletions

View file

@ -0,0 +1,3 @@
function update --description 'Arch system update'
paru -Syyuu --assume-installed polkit,rtkit,udisks2
end

View file

@ -1,6 +1,9 @@
follow_now_playing_lyrics = no
fetch_lyrics_for_current_song_in_background = no
media_library_hide_album_dates = yes
mpd_music_dir = ~/Music
mouse_support = no
mouse_list_scroll_whole_page = no
mpd_music_dir = no
screen_switcher_mode = media_library
startup_screen = media_library
store_lyrics_in_song_dir = no

View file

@ -16,7 +16,10 @@ local peek_definition = function()
end
local inlay_hint_toggle = function()
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
local filter = { bufnr = 0 }
local enabled = vim.lsp.inlay_hint.is_enabled(filter)
vim.lsp.inlay_hint.enable(not enabled, filter)
end
_G.InlayHintToggle = inlay_hint_toggle

View file

@ -27,6 +27,6 @@ windows:
panes:
-
- window_name: scratch
start_directory: "~"
start_directory: ~/GitSources
panes:
-

View file

@ -22,7 +22,3 @@ windows:
start_directory: "~"
panes:
-
- window_name: top
panes:
- shell_command:
- btop