Skip to content

Instantly share code, notes, and snippets.

@asynts
Last active August 6, 2021 15:34
Show Gist options
  • Save asynts/3f71d3d0288488217ee5b2bcabfe46da to your computer and use it in GitHub Desktop.
Save asynts/3f71d3d0288488217ee5b2bcabfe46da to your computer and use it in GitHub Desktop.
configuration
#!/bin/sh
exec tail -n +3 $0
menuentry "Shutdown" {
halt
}
" ~/.config/nvim/after/syntax/c.vim
syntax match asyntsComment #^///.*$#
syntax match asyntsComment #^//////.*$#
highlight asyntsComment ctermfg=202
GRUB_DEFAULT=0
GRUB_TIMEOUT=-1
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
gsettings set org.gnome.shell.app-switcher current-workspace-only true
gsettings set org.gnome.shell.window-switcher current-workspace-only true
" ~/.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