Last active
August 6, 2021 15:34
-
-
Save asynts/3f71d3d0288488217ee5b2bcabfe46da to your computer and use it in GitHub Desktop.
configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
exec tail -n +3 $0 | |
menuentry "Shutdown" { | |
halt | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ~/.config/nvim/after/syntax/c.vim | |
syntax match asyntsComment #^///.*$# | |
syntax match asyntsComment #^//////.*$# | |
highlight asyntsComment ctermfg=202 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GRUB_DEFAULT=0 | |
GRUB_TIMEOUT=-1 | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" | |
GRUB_CMDLINE_LINUX="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gsettings set org.gnome.shell.app-switcher current-workspace-only true | |
gsettings set org.gnome.shell.window-switcher current-workspace-only true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ~/.config/nvim/init.vim | |
call plug#begin('~/.config/nvim/plugged') | |
Plug 'tpope/vim-vinegar' | |
Plug 'tpope/vim-surround' | |
Plug 'tomtom/tcomment_vim' | |
call plug#end() | |
set tabstop=2 softtabstop=0 expandtab shiftwidth=2 | |
set number nowrap | |
set formatoptions=jrql | |
set completeopt=menu,longest | |
colo pablo | |
syntax on | |
filetype plugin on | |
autocmd FileType * setlocal formatoptions=jrql | |
autocmd FileType * set tabstop=2 softtabstop=0 expandtab shiftwidth=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment