commit d08403c2cd17e140656b6213e5c495f0820ce388 Author: Maurizio Porrato Date: Thu Sep 10 10:27:20 2020 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84c3191 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*[~%] +*.swp diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..307a057 --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,3 @@ +[user] + email = maurizio.porrato@gmail.com + name = Maurizio Porrato diff --git a/mpv/.config/mpv/mpv.conf b/mpv/.config/mpv/mpv.conf new file mode 100644 index 0000000..9efc272 --- /dev/null +++ b/mpv/.config/mpv/mpv.conf @@ -0,0 +1 @@ +hwdec=auto diff --git a/readline/.inputrc b/readline/.inputrc new file mode 100644 index 0000000..53de1a1 --- /dev/null +++ b/readline/.inputrc @@ -0,0 +1,2 @@ +"\e[5~": history-search-backward +"\e[6~": history-search-forward diff --git a/sakura/.config/sakura/sakura.conf b/sakura/.config/sakura/sakura.conf new file mode 100644 index 0000000..cd3fa9f --- /dev/null +++ b/sakura/.config/sakura/sakura.conf @@ -0,0 +1,68 @@ +[sakura] +colorset1_fore=rgb(192,192,192) +colorset1_back=rgb(0,0,0) +colorset1_curs=rgb(252,233,79) +colorset1_key=F1 +colorset2_fore=rgb(192,192,192) +colorset2_back=rgb(0,0,0) +colorset2_curs=rgb(255,255,255) +colorset2_key=F2 +colorset3_fore=rgb(192,192,192) +colorset3_back=rgb(0,0,0) +colorset3_curs=rgb(255,255,255) +colorset3_key=F3 +colorset4_fore=rgb(192,192,192) +colorset4_back=rgb(0,0,0) +colorset4_curs=rgb(255,255,255) +colorset4_key=F4 +colorset5_fore=rgb(192,192,192) +colorset5_back=rgb(0,0,0) +colorset5_curs=rgb(255,255,255) +colorset5_key=F5 +colorset6_fore=rgb(192,192,192) +colorset6_back=rgb(0,0,0) +colorset6_curs=rgb(255,255,255) +colorset6_key=F6 +last_colorset=1 +scroll_lines=4096 +font=Fira Mono,monospace 12 +show_always_first_tab=No +scrollbar=false +closebutton=true +tabs_on_bottom=false +less_questions=true +disable_numbered_tabswitch=false +use_fading=true +scrollable_tabs=true +urgent_bell=Yes +audible_bell=No +blinking_cursor=No +stop_tab_cycling_at_end_tabs=No +allow_bold=Yes +cursor_type=VTE_CURSOR_SHAPE_BLOCK +word_chars=-,./?%&#_~: +palette=solarized_dark +add_tab_accelerator=5 +del_tab_accelerator=5 +switch_tab_accelerator=4 +move_tab_accelerator=5 +copy_accelerator=5 +scrollbar_accelerator=5 +open_url_accelerator=5 +font_size_accelerator=4 +set_tab_name_accelerator=5 +search_accelerator=5 +add_tab_key=T +del_tab_key=W +prev_tab_key=Left +next_tab_key=Right +copy_key=C +paste_key=V +scrollbar_key=S +set_tab_name_key=N +search_key=F +increase_font_size_key=plus +decrease_font_size_key=minus +fullscreen_key=F11 +set_colorset_accelerator=5 +icon_file=terminal-tango.svg diff --git a/vim/.vimrc b/vim/.vimrc new file mode 100644 index 0000000..3389167 --- /dev/null +++ b/vim/.vimrc @@ -0,0 +1,29 @@ +set nocompatible +set backspace=indent,eol,start +filetype on +filetype indent plugin on +syntax on +colorscheme elflord +set colorcolumn=79 +highlight ColorColumn ctermbg=darkgrey guibg=darkgrey +highlight LineNr ctermbg=darkgrey ctermfg=black guibg=darkgrey guifg=black +set number relativenumber +augroup numbertoggle + autocmd! + autocmd BufEnter,FocusGained,InsertLeave * set relativenumber + autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber +augroup END +augroup ftprefs + autocmd! + autocmd FileType make set noexpandtab tabstop=8 + autocmd FileType html,xhtml,css,xml,xslt set shiftwidth=2 softtabstop=2 +augroup END +filetype indent on +set encoding=utf-8 +set listchars=tab:▸\ ,eol:¬ +set nowrap autoindent +set expandtab tabstop=4 shiftwidth=4 +set smartindent autoindent +set hlsearch incsearch showmatch ignorecase smartcase +set hidden wildmenu showcmd +set ruler visualbell