diff options
-rw-r--r-- | .bashrc | 1 | ||||
-rw-r--r-- | .config/dunst/dunstrc | 6 | ||||
-rw-r--r-- | .config/nvim/init.vim | 14 |
3 files changed, 14 insertions, 7 deletions
@@ -18,6 +18,7 @@ alias gs='git status' alias gc='git commit -a' alias ga='git add' alias gp='git push' +alias gd='git diff' PS1='[\u@\h \W]\$ ' export EDITOR='nvim' diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index a437f6a..f12d512 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -72,19 +72,19 @@ context = ctrl+shift+period [urgency_low] -timeout = 5 +timeout = 2 background = "#161418" foreground = "#d2d1d2" frame_color = "#161418" [urgency_normal] -timeout = 5 +timeout = 2 background = "#161418" foreground = "#d2d1d2" frame_color = "#161418" [urgency_critical] -timeout = 10 +timeout = 5 background = "#161418" foreground = "#d2d1d2" frame_color = "#161418" diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index c4d8784..0c767d9 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -77,15 +77,15 @@ set ruler set scroll=4 set sessionoptions-=options set shiftround -set shiftwidth=4 +set shiftwidth=8 set shortmess+=A set showbreak= set showmatch set sidescrolloff=3 set smartcase -set softtabstop=4 +set softtabstop=8 set suffixes+=.pyc -set tabstop=4 +set tabstop=8 set textwidth=100 set wildmenu set wildmode=list:longest,full @@ -98,7 +98,7 @@ nmap j gj nmap k gk nmap <Leader>w :w<CR> nmap <Leader>q :q<CR> -nmap <Leader>b :BD<CR> +nmap <Leader>a :BD<CR> nmap <Leader>l :bn<CR> " TODO: Fix the following line nmap <Leader>h :bp<CR> @@ -168,6 +168,12 @@ augroup VimDiff autocmd! autocmd VimEnter,FilterWritePre * if &diff | ALEDisable | endif augroup END +let g:ale_pattern_options = { +\ '\.c$': {'ale_linters': ['clangtidy'], 'ale_fixers': ['clang-format']}, +\ '\.h$': {'ale_linters': ['clangtidy'], 'ale_fixers': ['clang-format']}, +\ '\.asm$': {'ale_linters': [], 'ale_fixers': ['trim_whitespace']}, +\} +let g:ale_pattern_options_enabled = 1 " File explorer nnoremap <silent> <Leader>n :NERDTreeToggle<CR> |