Skip to content

Instantly share code, notes, and snippets.

View hallwack's full-sized avatar
🔴
ynwa (you're nothing without allah)

Raihan Adam hallwack

🔴
ynwa (you're nothing without allah)
View GitHub Profile
@hallwack
hallwack / settings.json
Last active October 4, 2025 06:13
My New VsCode Setting
{
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
@hallwack
hallwack / fzf_config.vim
Last active August 5, 2021 15:10
fzf configuration
" This is the default extra key bindings
let g:fzf_action = {
\ 'ctrl-t': 'tab split',
\ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit' }
" Enable per-command history.
" CTRL-N and CTRL-P will be automatically bound to next-history and
" previous-history instead of down and up. If you don't like the change,
" explicitly bind the keys to down and up in your $FZF_DEFAULT_OPTS.
@hallwack
hallwack / coc.vim
Last active August 5, 2021 15:10
coc-nvim configuration
" Set internal encoding of vim, not needed on neovim, since coc.nvim using some
" unicode characters in the file autoload/float.vim
set encoding=utf-8
" TextEdit might fail if hidden is not set.
set hidden
" Some servers have issues with backup files, see #649.
set nobackup
set nowritebackup
@hallwack
hallwack / init.vim
Last active August 5, 2021 15:09
nvim configuration
" Basic
syntax on
set number
set encoding=utf-8
set tabstop=4
set shiftwidth=4
set expandtab
set smartindent
set autoindent
set tabpagemax=10