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
{ | |
"singleQuote": true, | |
"jsxSingleQuote": true, | |
"trailingComma": "none", | |
"plugins": ["prettier-plugin-jsdoc"] | |
} |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"noEmit": true, | |
"allowJs": true, | |
"checkJs": true, | |
"esModuleInterop": true, | |
"jsx": "react-jsx" | |
} | |
} |
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
import globals from 'globals'; | |
import pluginJs from '@eslint/js'; | |
import tseslint from 'typescript-eslint'; | |
import pluginReact from 'eslint-plugin-react'; | |
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; | |
import eslintPluginReactHooks from 'eslint-plugin-react-hooks'; | |
export default [ | |
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] }, | |
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } }, |
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
[user] | |
name = shivapand | |
email = [email protected] | |
[core] | |
editor = nvim | |
[difftool] | |
prompt = true | |
[diff] | |
tool = nvimdiff | |
[difftool "nvimdiff"] |
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
#vimiumHintMarkerContainer div.internalVimiumHintMarker, #vimiumHintMarkerContainer div.vimiumHintMarker { | |
padding: 3px 4px; | |
background: #444; | |
border: none; | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); | |
} | |
#vimiumHintMarkerContainer div span { | |
color: #fff; | |
text-shadow: none; |
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
{ | |
"coc.preferences.jumpCommand": "tabe", | |
"eslint.alwaysShowStatus": 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
#!/bin/bash | |
xdotool windowactivate `xdotool search --desktop 0 --class "terminal"` |
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
Session.vim |
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/bash | |
xdotool windowactivate `xdotool search --desktop 0 --class "chromium"` |
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/bash | |
[ $(xfconf-query -c accessibility -p /MouseKeys) == "false" ] \ | |
&& $(xfconf-query -c accessibility -p /MouseKeys -s true) \ | |
|| $(xfconf-query -c accessibility -p /MouseKeys -s false) |
NewerOlder