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 ctrl:swapcaps
|
||||||
setxkbmap -option altwin:swap_lalt_lwin
|
setxkbmap -option altwin:swap_lalt_lwin
|
||||||
setxkbmap -model pc105 -layout us,ar -variant ,qwerty -option grp:shifts_toggle
|
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"))
|
org-agenda-files (list org-directory (concat org-roam-directory "life.org"))
|
||||||
rmh-elfeed-org-files (list "~/Documents/private.el/elfeed.org")
|
rmh-elfeed-org-files (list "~/Documents/private.el/elfeed.org")
|
||||||
elfeed-dashboard-file "~/Documents/private.el/elfeed-dashboard.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")
|
org-my-anki-file (concat org-roam-directory "anki.org")
|
||||||
)
|
)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
|
@ -12,7 +12,8 @@ call plug#begin('~/.vim/plugged')
|
||||||
" Appearence {{{ "
|
" Appearence {{{ "
|
||||||
"Plug 'itchyny/lightline.vim' " UI
|
"Plug 'itchyny/lightline.vim' " UI
|
||||||
"Plug 'ap/vim-buftabline' " buffers to tabline
|
"Plug 'ap/vim-buftabline' " buffers to tabline
|
||||||
Plug 'connorholyday/vim-snazzy'
|
"Plug 'connorholyday/vim-snazzy'
|
||||||
|
Plug 'morhetz/gruvbox'
|
||||||
Plug 'ayu-theme/ayu-vim'
|
Plug 'ayu-theme/ayu-vim'
|
||||||
Plug 'dylanaraps/wal.vim'
|
Plug 'dylanaraps/wal.vim'
|
||||||
Plug 'mhinz/vim-startify'
|
Plug 'mhinz/vim-startify'
|
||||||
|
@ -235,9 +236,9 @@ nmap <leader>rn <Plug>(coc-rename)
|
||||||
"set colorcolumn=80
|
"set colorcolumn=80
|
||||||
highlight ColorColumn ctermbg=0 guibg=lightgrey
|
highlight ColorColumn ctermbg=0 guibg=lightgrey
|
||||||
set termguicolors " enable true colors support
|
set termguicolors " enable true colors support
|
||||||
colorscheme snazzy
|
|
||||||
"let g:lightline = { 'colorscheme': 'snazzy' }
|
"let g:lightline = { 'colorscheme': 'snazzy' }
|
||||||
set background=dark
|
set background=dark
|
||||||
|
colorscheme gruvbox
|
||||||
hi Normal guibg=NONE ctermbg=NONE " trasnperant!
|
hi Normal guibg=NONE ctermbg=NONE " trasnperant!
|
||||||
|
|
||||||
if executable('rg')
|
if executable('rg')
|
||||||
|
|
Loading…
Reference in New Issue