mirror of https://github.com/Flinner/dots.git
switch gruvbox(nvim), added tap for touch
This commit is contained in:
parent
f284ce8192
commit
1218798900
|
@ -1,5 +1,9 @@
|
|||
#!/bin/bash
|
||||
setxkbmap -option ctrl:swapcaps
|
||||
setxkbmap -option altwin:swap_lalt_lwin
|
||||
setxkbmap -model pc105 -layout us,ar -variant ,qwerty -option grp:shifts_toggle
|
||||
xinput set-prop 18 309 1
|
||||
|
||||
# touchpad touch
|
||||
idd=$(xinput --list | grep 'Touchpad' | awk '{print $6}'| cut -d'=' -f2)
|
||||
xinput set-prop $idd 309 1
|
||||
|
||||
|
|
|
@ -743,7 +743,7 @@ better sorting for ivy, company..
|
|||
org-agenda-files (list org-directory (concat org-roam-directory "life.org"))
|
||||
rmh-elfeed-org-files (list "~/Documents/private.el/elfeed.org")
|
||||
elfeed-dashboard-file "~/Documents/private.el/elfeed-dashboard.org"
|
||||
org-preview-latex-image-directory "~/.cache/ltximg"
|
||||
org-preview-latex-image-directory "~/.cache/ltx/ltximg"
|
||||
org-my-anki-file (concat org-roam-directory "anki.org")
|
||||
)
|
||||
#+end_src
|
||||
|
|
|
@ -12,7 +12,8 @@ call plug#begin('~/.vim/plugged')
|
|||
" Appearence {{{ "
|
||||
"Plug 'itchyny/lightline.vim' " UI
|
||||
"Plug 'ap/vim-buftabline' " buffers to tabline
|
||||
Plug 'connorholyday/vim-snazzy'
|
||||
"Plug 'connorholyday/vim-snazzy'
|
||||
Plug 'morhetz/gruvbox'
|
||||
Plug 'ayu-theme/ayu-vim'
|
||||
Plug 'dylanaraps/wal.vim'
|
||||
Plug 'mhinz/vim-startify'
|
||||
|
@ -235,9 +236,9 @@ nmap <leader>rn <Plug>(coc-rename)
|
|||
"set colorcolumn=80
|
||||
highlight ColorColumn ctermbg=0 guibg=lightgrey
|
||||
set termguicolors " enable true colors support
|
||||
colorscheme snazzy
|
||||
"let g:lightline = { 'colorscheme': 'snazzy' }
|
||||
set background=dark
|
||||
colorscheme gruvbox
|
||||
hi Normal guibg=NONE ctermbg=NONE " trasnperant!
|
||||
|
||||
if executable('rg')
|
||||
|
|
Loading…
Reference in New Issue