Compare commits

...

4 Commits

Author SHA1 Message Date
Augusto Gunsch a241c47ff4
Add plugin tmux-resurrect 2022-12-14 12:00:20 +01:00
Augusto Gunsch d67b1f3581 Add phan LSP 2022-12-14 11:58:30 +01:00
Augusto Gunsch b6127ce8cb Set Brave as default browser 2022-12-14 11:57:19 +01:00
Augusto Gunsch 3c8f51cf17 Add radiotray-ng config 2022-12-14 11:56:57 +01:00
7 changed files with 57 additions and 7 deletions

View File

@ -80,7 +80,8 @@ local background_processes = {
"flameshot",
"nm-applet",
"lxpolkit",
"unclutter"
"unclutter",
"radiotray-ng"
}
local reload_programs = {

View File

@ -7,6 +7,6 @@ application/pdf=mupdf.desktop
video/mp4=mpv.desktop
image/png=feh.desktop
image/jpg=feh.desktop
x-scheme-handler/http=qutebrowser.desktop
x-scheme-handler/https=qutebrowser.desktop
text/html=qutebrowser.desktop
x-scheme-handler/http=brave.desktop
x-scheme-handler/https=brave.desktop
text/html=brave.desktop

View File

@ -20,6 +20,9 @@ hi DiffText ctermbg=166 ctermfg=15
hi Folded ctermbg=233 ctermfg=247
hi FoldColumn ctermbg=233 ctermfg=247
" matchit builtin plugin
packadd! matchit
let mapleader = " "
let maplocalleader = ","
@ -33,11 +36,11 @@ nnoremap <silent> <F8> <cmd>TagbarToggle<CR>
nnoremap <silent> <F9> <cmd>%s/\([( -]\)0\.\(\d\)/\1.\2/gc<CR>
nnoremap <silent> <F12> <cmd>set et<cr><cmd>set ts=4<cr><cmd>set sw=4<cr>
nnoremap <silent> <F11> <cmd>set noet<cr>
nnoremap <silent> <C-n> <cmd>NERDTreeToggle<CR>
nnoremap <silent> <C-n> <cmd>NERDTreeToggle<cr>
nnoremap <silent> <C-p> <cmd>let @+=expand("%")<cr><cmd>echo "Copied relative file path to clipboard."<cr>
nnoremap <silent> <leader>ev <cmd>tabnew $MYVIMRC<cr>
nnoremap <silent> <leader>sv <cmd>source $MYVIMRC<cr>
nnoremap <silent> <leader>sv <cmd>source $MYVIMRC<cr><cmd>AirlineRefresh<cr>
nnoremap <C-s> :%s//gc<left><left><left>
nnoremap <silent> <C-w>t <cmd>tabnew<cr>
@ -92,6 +95,8 @@ Plug 'junegunn/fzf.vim'
Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-obsession'
call plug#end()
lua << EOF
@ -159,7 +164,7 @@ end
-- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches
local servers = { 'clangd', 'rls', 'tsserver', 'jedi_language_server' }
local servers = { 'clangd', 'rls', 'tsserver', 'jedi_language_server', 'phan'}
for _, lsp in ipairs(servers) do
setup(lsp, default_attach)
end

View File

@ -0,0 +1,12 @@
[
{
"group" : "root",
"stations" :
[
{
"name" : "Radio Maryja",
"url" : "https://radiomaryja.fastcast4u.com/tunein/radiomaryja.pls"
}
]
}
]

View File

@ -0,0 +1,10 @@
{
"bookmarks" : "/home/augusto/.config/radiotray-ng/bookmarks.json",
"last-station" : "Radio Maryja",
"last-station-group" : "root",
"last-station-notifications" : true,
"notification-verbose" : true,
"notifications" : true,
"split-title" : true,
"volume-level" : 34
}

View File

@ -0,0 +1,12 @@
[main]
x=0
y=32
w=958
h=978
split=229
[group]
col1=160
[station]
col1=160
col2=340
col3=60

View File

@ -77,3 +77,13 @@ set -g message-style 'bg=colour27 fg=white'
# set default shell
set-option -g default-shell $SHELL
# save nvim session
set -g @resurrect-strategy-nvim 'session'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'