updates
This commit is contained in:
@@ -15,6 +15,7 @@
|
|||||||
* sysrq lock shutdown https://forum.manjaro.org/t/howto-reboot-turn-off-your-frozen-computer-reisub-reisuo/3855
|
* sysrq lock shutdown https://forum.manjaro.org/t/howto-reboot-turn-off-your-frozen-computer-reisub-reisuo/3855
|
||||||
+ `echo kernel.sysrq=1 | sudo tee --append /etc/sysctl.d/99-sysctl.conf`
|
+ `echo kernel.sysrq=1 | sudo tee --append /etc/sysctl.d/99-sysctl.conf`
|
||||||
+ `sudo update-grub`
|
+ `sudo update-grub`
|
||||||
|
* WakeOnLan `yay ethtool`
|
||||||
|
|
||||||
# coding
|
# coding
|
||||||
* essentials `yay -S neovim tmux`
|
* essentials `yay -S neovim tmux`
|
||||||
|
|||||||
+12
-1
@@ -39,6 +39,7 @@ Plug 'tpope/vim-eunuch'
|
|||||||
Plug 'mbbill/undotree' " Persistent undo
|
Plug 'mbbill/undotree' " Persistent undo
|
||||||
Plug 'farmergreg/vim-lastplace' " When reopen a buffer, puts the cursor where it was last time
|
Plug 'farmergreg/vim-lastplace' " When reopen a buffer, puts the cursor where it was last time
|
||||||
Plug 'haya14busa/vim-asterisk' " better asterisk motions
|
Plug 'haya14busa/vim-asterisk' " better asterisk motions
|
||||||
|
Plug 'dkarter/bullets.vim'
|
||||||
" python
|
" python
|
||||||
Plug 'tmhedberg/SimpylFold'
|
Plug 'tmhedberg/SimpylFold'
|
||||||
Plug 'Vimjas/vim-python-pep8-indent'
|
Plug 'Vimjas/vim-python-pep8-indent'
|
||||||
@@ -381,7 +382,7 @@ inoremap <nowait><expr> <C-b> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(
|
|||||||
" MARKDOWN
|
" MARKDOWN
|
||||||
" vim-markdown
|
" vim-markdown
|
||||||
let g:vim_markdown_new_list_item_indent=0
|
let g:vim_markdown_new_list_item_indent=0
|
||||||
let g:vim_markdown_auto_insert_bullets=0
|
let g:vim_markdown_auto_insert_bullets=1
|
||||||
let g:vim_markdown_conceal=1
|
let g:vim_markdown_conceal=1
|
||||||
let g:vim_markdown_conceal_code_blocks=1
|
let g:vim_markdown_conceal_code_blocks=1
|
||||||
let g:vim_markdown_math=1
|
let g:vim_markdown_math=1
|
||||||
@@ -400,6 +401,16 @@ let g:mkdp_preview_options={
|
|||||||
" sync_scroll_type: 'middle', 'top' or 'relative'
|
" sync_scroll_type: 'middle', 'top' or 'relative'
|
||||||
" hide_yaml_meta: if hide yaml metadata, default is 1
|
" hide_yaml_meta: if hide yaml metadata, default is 1
|
||||||
|
|
||||||
|
" *****************************
|
||||||
|
" BULLETS
|
||||||
|
let g:bullets_outline_levels = ['ROM', 'ABC', 'num', 'abc', 'rom', 'std-', 'std*']
|
||||||
|
let g:bullets_enabled_file_types = [
|
||||||
|
\ 'markdown',
|
||||||
|
\ 'text',
|
||||||
|
\ 'gitcommit',
|
||||||
|
\ 'scratch'
|
||||||
|
\]
|
||||||
|
|
||||||
" *****************************
|
" *****************************
|
||||||
" autocmd
|
" autocmd
|
||||||
function! CleanEmptyBuffers()
|
function! CleanEmptyBuffers()
|
||||||
|
|||||||
Reference in New Issue
Block a user