Compare commits
4 Commits
38059f7334
...
a241c47ff4
Author | SHA1 | Date |
---|---|---|
Augusto Gunsch | a241c47ff4 | |
Augusto Gunsch | d67b1f3581 | |
Augusto Gunsch | b6127ce8cb | |
Augusto Gunsch | 3c8f51cf17 |
|
@ -80,7 +80,8 @@ local background_processes = {
|
|||
"flameshot",
|
||||
"nm-applet",
|
||||
"lxpolkit",
|
||||
"unclutter"
|
||||
"unclutter",
|
||||
"radiotray-ng"
|
||||
}
|
||||
|
||||
local reload_programs = {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
[
|
||||
{
|
||||
"group" : "root",
|
||||
"stations" :
|
||||
[
|
||||
{
|
||||
"name" : "Radio Maryja",
|
||||
"url" : "https://radiomaryja.fastcast4u.com/tunein/radiomaryja.pls"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
|
@ -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
|
||||
}
|
|
@ -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
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue