From dec0e0e56f232f913db2256fd2e30c080401d86b Mon Sep 17 00:00:00 2001 From: Andreev Gregory <1@example.com> Date: Tue, 25 Mar 2025 23:26:28 +0300 Subject: [PATCH] config files --- .lesskey | 5 ++ .vimrc | 152 ++++++++++++++++++++++++++++++++++++++++++++++++++- .xinitrc | 21 +++++++ bootstrap.sh | 12 ++++ "cmus\\rc" | 39 +++++++++++++ picom.conf | 27 +++++++++ 6 files changed, 255 insertions(+), 1 deletion(-) create mode 100644 .lesskey mode change 120000 => 100755 .vimrc create mode 100755 .xinitrc create mode 100644 "cmus\\rc" create mode 100644 picom.conf diff --git a/.lesskey b/.lesskey new file mode 100644 index 0000000..86cbe37 --- /dev/null +++ b/.lesskey @@ -0,0 +1,5 @@ +h noaction +j left-scroll +k forw-line +l back-line +; right-scroll diff --git a/.vimrc b/.vimrc deleted file mode 120000 index 6b934c6..0000000 --- a/.vimrc +++ /dev/null @@ -1 +0,0 @@ -my_vim_config/.vimrc \ No newline at end of file diff --git a/.vimrc b/.vimrc new file mode 100755 index 0000000..3af1329 --- /dev/null +++ b/.vimrc @@ -0,0 +1,151 @@ +let g:ctrl_semicolon_key_code="[69;50S" + +set number + +set expandtab +set softtabstop=4 +set tabstop=4 +set shiftwidth=4 +set textwidth=99999999 +set wrapmargin=0 +set nowrap +set formatoptions-=t +set clipboard=unnamedplus +set mouse=n +set noswapfile +set backspace=indent,eol,start +set ttimeoutlen=5 + + +let g:ale_enabled = 0 + +" For YCM +let g:ycm_auto_trigger = 0 +let g:ycm_auto_hover = '' +let g:ycm_signature_help = 0 +let g:ycm_show_diagnostics_ui = 0 +set completeopt=menuone,popup +let g:ycm_server_keep_logfiles = 0 + +set nocompatible +" filetype off +" set rtp+=~/.vim/bundle/Vundle.vim +set rtp+=~/.vim/bundle/ale +set rtp+=~/.vim/bundle/nerdtree +set rtp+=~/.vim/bundle/vim-airline +set rtp+=~/.vim/bundle/YouCompleteMe +" filetype plugin indent on + +syntax on +set signcolumn=yes +highlight Normal ctermbg=NONE guibg=NONE +highlight SignColumn term=standout ctermfg=14 ctermbg=37 guifg=Cyan guibg=LightSeaGreen +highlight EndOfBuffer ctermbg=NONE ctermfg=37 guibg=NONE guifg=LightSeaGreen +highlight Pmenu ctermbg=darkblue ctermfg=white +highlight PmenuSel ctermbg=lightblue ctermfg=black + +"nnoremap :YcmCompleter GetDoc +"nnoremap :echo "" +"inoremap (YCMCompleter) +"autocmd User YcmLoaded inoremap (YCMCompleter) +" How bad YCM developers had not thought about ADDING AN ABILITY TO MAP FUNCTIONS +imap +inoremap +nnoremap q + +" For Airline +let g:airline_powerline_fonts = 1 +let g:airline#extensions#keymap#enabled = 0 +let g:airline_section_z = "\ue0a1:%l/%L Col:%c" +let g:Powerline_symbols='unicode' + +" For NERDTree +let g:NERDTreeShowHidden=1 + +nnoremap i :NERDTree5> +nnoremap v :source $MYVIMRC +nnoremap e :vsplit $MYVIMRC +nnoremap w :set wrap:set linebreak +nnoremap y :call system("xclip -i -f -selection primary \| xclip -i -selection clipboard", getreg("@\"")) + +" Close the tab if NERDTree is the only window remaining in it. +autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | call feedkeys(":quit\:\") | endif + +" If another buffer tries to replace NERDTree, put it in the other window, and bring back NERDTree. +autocmd BufEnter * if winnr() == winnr('h') && bufname('#') =~ 'NERD_tree_\d\+' && bufname('%') !~ 'NERD_tree_\d\+' && winnr('$') > 1 | + \ let buf=bufnr() | buffer# | execute "normal! \w" | execute 'buffer'.buf | endif + +" Remap cursor movement keys in Normal mode +nnoremap j h +nnoremap k j +nnoremap l k +nnoremap ; l +nnoremap +nnoremap +nnoremap +execute "nnoremap " . g:ctrl_semicolon_key_code . " " + +" Remap cursor movement keys in Visual mode +vnoremap j h +vnoremap k j +vnoremap l k +vnoremap ; l +vnoremap +vnoremap +vnoremap +execute "vnoremap " . g:ctrl_semicolon_key_code . " " + +" Remap cursor movement keys in Select mode +snoremap j h +snoremap k j +snoremap l k +snoremap ; l + +" Remap cursor movement keys in Operator-pending mode +onoremap j h +onoremap k j +onoremap l k +onoremap ; l + +" Remap cursor movement keys in Insert mode +inoremap +inoremap +inoremap +execute "inoremap " . g:ctrl_semicolon_key_code . " " + +" Remap cursor movement keys in Command-line mode +cnoremap +cnoremap +cnoremap +execute "cnoremap " . g:ctrl_semicolon_key_code . " " + +"Remap window movement +nnoremap j h +nnoremap k j +nnoremap l k +nnoremap ; l + +" My custom idea - moving window with the cursor +nnoremap K j +nnoremap L k + +"Navigating tabs +nnoremap j gT +nnoremap ; gt + +"Rearranging tabs +nnoremap J :tabmove -1 +nnoremap : :tabmove +1 + + +"Makefile tab highlight +augroup MakefileTabHighlight + autocmd! + "autocmd FileType make syntax match FirstTab /^\t/ + "autocmd FileType make highlight FirstTab ctermbg=35 ctermfg=35 + autocmd FileType make setlocal noexpandtab + autocmd FileType make setlocal list + autocmd FileType make setlocal lcs=tab:*\ \* + autocmd FileType make highlight SpecialKey ctermbg=35 ctermfg=30 +augroup END + diff --git a/.xinitrc b/.xinitrc new file mode 100755 index 0000000..ed9d57d --- /dev/null +++ b/.xinitrc @@ -0,0 +1,21 @@ +#!/bin/sh + +exec >~/xinitrc.log 2>&1 +set -x + +export GTK_IM_MODULE=fcitx +export QT_IM_MODULE=fcitx +export SDL_IM_MODULE=fcitx +export XMODIFIERS=@im=fcitx + +setxkbmap -layout "us,ru" -option "grp:win_space_toggle" +xset r rate 250 30 +xset b off +xset s off -dpms + +flameshot & +picom & + +dwm_random_bg.sh & +exec /usr/local/bin/dwm + diff --git a/bootstrap.sh b/bootstrap.sh index 6ad269c..be2d111 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,5 +3,17 @@ set -x mkdir -p "$HOME/.config/gtk-3.0" printf "[Settings]\ngtk-application-prefer-dark-theme=true\n" >> "$HOME/.config/gtk-3.0/settings.ini" +mkdir -p "$HOME/.config/cmus" +cp ./cmus\\rc "$HOME/.config/cmus/rc" +cp ./picom.conf "$HOME/.config/" +cp ./.lesskey "$HOME" +cp ./.tmux.conf "$HOME" +cp ./.vimrc "$HOME" +cp ./.xinitrc "$HOME" + mkdir -p "$HOME/desktop_env" cd "$HOME/desktop_env" +git clone 'https://yyyi.ru/suckless-desktop/dmenu.git' +git clone 'https://yyyi.ru/suckless-desktop/st.git' +git clone 'https://yyyi.ru/suckless-desktop/dwm.git' + diff --git "a/cmus\\rc" "b/cmus\\rc" new file mode 100644 index 0000000..cc689c9 --- /dev/null +++ "b/cmus\\rc" @@ -0,0 +1,39 @@ +set color_win_fg=227 +set color_win_bg=default +set color_cmdline_fg=220 +set color_cmdline_bg=default +set color_error=9 +set color_info=106 +set color_separator=11 +set color_statusline_fg=208 +set color_statusline_bg=default +set color_statusline_progress_fg=162 +set color_statusline_progress_bg=default +set color_titleline_fg=214 +set color_titleline_bg=default +set color_win_title_fg=166 +set color_win_title_bg=default + +set color_win_cur=9 +# When track is hovered and playing +set color_win_cur_sel_fg=88 +set color_win_cur_sel_bg=220 +# When track is playing and selected but not hovered +set color_win_inactive_cur_sel_fg=88 +set color_win_inactive_cur_sel_bg=222 +# When track is not playing and hovered +set color_win_sel_fg=232 +set color_win_sel_bg=190 +# When some track is selected but is not playing and not hovered +set color_win_inactive_sel_fg=232 +set color_win_inactive_sel_bg=172 + +set color_win_dir=155 + +unbind -f common h +bind -f common j seek -5 +bind -f common k win-down +bind -f common l win-up +bind -f common ; seek +5 +bind -f common R source ~/.config/cmus/rc + diff --git a/picom.conf b/picom.conf new file mode 100644 index 0000000..843e955 --- /dev/null +++ b/picom.conf @@ -0,0 +1,27 @@ +# Shadow +shadow=false + +# Fading +fading=true +fade-in-step=0.05 +fade-out-step=0.03 +fade-delta=5 + +# Transparency/Opacity +frame-opacity=1 +#inactive-dim-fixed=false + +# Blur +blur-background=true +blur-kern="11x11gaussian" +blur-strength=5 +#blur-background-fixed=true + +# General Settings +backend="glx" +vsync=true +detect-rounded-corners=true +detect-client-opacity=true +detect-transient=true +use-damage=true +