update
This commit is contained in:
parent
aac456d6d5
commit
6bd40aeeeb
|
@ -74,75 +74,50 @@ const $1 = document.querySelectorAll($0);
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet jsx "import React ..."
|
snippet jsx "import React ..."
|
||||||
import React from "react";
|
import * as React from "react";${1:
|
||||||
|
import { css } from "@emotion/react";}
|
||||||
|
|
||||||
class $1 extends React.Component {
|
const `!p snip.rv = snip.basename` = ($2) => {
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.state = {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
return (
|
return (
|
||||||
<${2:div} className={this.props.className}>
|
<div>$0
|
||||||
$0
|
</div>
|
||||||
</$2>
|
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export default () => (
|
export default `!p snip.rv = snip.basename`;
|
||||||
<S.$1}></S.$1>
|
|
||||||
);
|
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet jsxs "import React ... styled"
|
|
||||||
import React from "react";
|
|
||||||
import styled from "styled-components";
|
|
||||||
|
|
||||||
const S = {};
|
snippet isi "import { StaticImage } ..."
|
||||||
|
import { StaticImage } from "gatsby-plugin-image";
|
||||||
|
endsnippet
|
||||||
|
|
||||||
class $1 extends React.Component {
|
snippet simg "<StaticImage ... />"
|
||||||
constructor(props) {
|
<StaticImage src="$1" alt="$2" />$0
|
||||||
super(props);
|
endsnippet
|
||||||
this.state = {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
snippet st. "styled."
|
||||||
return (
|
const $1 = styled.${2:div}\`
|
||||||
<${2:div} className={this.props.className}>
|
|
||||||
$0
|
$0
|
||||||
</$2>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
S.$1 = styled($1)\`
|
|
||||||
\`;
|
\`;
|
||||||
|
|
||||||
export default () => (
|
|
||||||
<S.$1}></S.$1>
|
|
||||||
);
|
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet jsc "class ... extends React.Component"
|
snippet icss "import ... from ..."
|
||||||
class $1 extends React.Component \{
|
import \{ css \} from "@emotion/react";
|
||||||
${2: constructor(props) \{
|
endsnippet
|
||||||
super(props);
|
|
||||||
this.state = \{
|
|
||||||
\}
|
|
||||||
\}}
|
|
||||||
|
|
||||||
render() \{
|
snippet ccs "const ..Css=css``"
|
||||||
return (
|
const $1Css = css\`
|
||||||
<${3:div}${4: className=\{this.props.className\}}>
|
|
||||||
$0
|
$0
|
||||||
</$3>
|
\`;
|
||||||
);
|
endsnippet
|
||||||
}
|
|
||||||
}
|
snippet cse "css={css``}"
|
||||||
|
css={css\`$0\`}
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet css "css={..Css}"
|
||||||
|
css={$0Css}
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet th "this.handle..."
|
snippet th "this.handle..."
|
||||||
|
@ -206,7 +181,3 @@ endsnippet
|
||||||
snippet imp "import ... from ..."
|
snippet imp "import ... from ..."
|
||||||
import $1 from "${2:.}/$1";
|
import $1 from "${2:.}/$1";
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet impcss "import ... from ..."
|
|
||||||
import \{ css \} from "@emotion/react";
|
|
||||||
endsnippet
|
|
||||||
|
|
|
@ -71,11 +71,11 @@ snippet ''= "'...' => "
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet apm "add_post_meta(..."
|
snippet apm "add_post_meta(..."
|
||||||
add_post_meta( ${1:671}, '$2', $0);
|
add_post_meta( ${1:2720}, '__DEBUG__$2', $0);
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet upm "update_post_meta(..."
|
snippet upm "update_post_meta(..."
|
||||||
update_post_meta( ${1:671}, '$1', $0);
|
update_post_meta( ${1:2720}, '__DEBUG__$1', $0);
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet sw "switch ..."
|
snippet sw "switch ..."
|
||||||
|
|
|
@ -10,14 +10,14 @@ call plug#begin('~/.config/nvim/bundle')
|
||||||
" https://github.com/simrat39/rust-tools.nvim
|
" https://github.com/simrat39/rust-tools.nvim
|
||||||
Plug 'simrat39/rust-tools.nvim'
|
Plug 'simrat39/rust-tools.nvim'
|
||||||
|
|
||||||
|
" evaluating
|
||||||
|
" https://github.com/wuelnerdotexe/vim-astro
|
||||||
|
Plug 'wuelnerdotexe/vim-astro'
|
||||||
|
|
||||||
" https://github.com/kevinhwang91/
|
" https://github.com/kevinhwang91/
|
||||||
Plug 'kevinhwang91/promise-async'
|
Plug 'kevinhwang91/promise-async'
|
||||||
Plug 'kevinhwang91/nvim-ufo'
|
Plug 'kevinhwang91/nvim-ufo'
|
||||||
|
|
||||||
" colorscheme (temporary)
|
|
||||||
Plug 'https://github.com/marko-cerovac/material.nvim', { 'branch': 'main' }
|
|
||||||
let g:material_style = 'lighter'
|
|
||||||
|
|
||||||
" colorscheme in develpment paper-tonic
|
" colorscheme in develpment paper-tonic
|
||||||
Plug '~/projects/nvim-paper-tonic'
|
Plug '~/projects/nvim-paper-tonic'
|
||||||
|
|
||||||
|
|
|
@ -180,12 +180,8 @@ require('rust-tools').setup({
|
||||||
settings = {["rust-analyzer"] = {checkOnSave = {command = "clippy"}}}
|
settings = {["rust-analyzer"] = {checkOnSave = {command = "clippy"}}}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
-- set inlay hints
|
-- inlay hints
|
||||||
require('rust-tools.inlay_hints').set_inlay_hints()
|
require('rust-tools').inlay_hints.enable()
|
||||||
-- disable inlay hints
|
|
||||||
require('rust-tools.inlay_hints').disable_inlay_hints()
|
|
||||||
-- toggle inlay hints
|
|
||||||
require('rust-tools.inlay_hints').toggle_inlay_hints()
|
|
||||||
------
|
------
|
||||||
|
|
||||||
-- null-ls
|
-- null-ls
|
||||||
|
@ -214,6 +210,17 @@ local sources = {
|
||||||
root .. "/node_modules/@wordpress/scripts/config/.eslintignore"
|
root .. "/node_modules/@wordpress/scripts/config/.eslintignore"
|
||||||
}
|
}
|
||||||
}), --
|
}), --
|
||||||
|
null_ls.builtins.diagnostics.eslint,
|
||||||
|
-- null_ls.builtins.diagnostics.eslint.with({
|
||||||
|
-- condition = function(utils)
|
||||||
|
-- local has_file1 = utils.root_has_file({".eslintrc.js"})
|
||||||
|
-- local has_file2 = utils.root_has_file({"gatsby-config.js"})
|
||||||
|
-- print("condition")
|
||||||
|
-- print(has_file1)
|
||||||
|
-- print(has_file2)
|
||||||
|
-- return has_file1 and has_file2
|
||||||
|
-- end
|
||||||
|
-- }), --
|
||||||
null_ls.builtins.diagnostics.phpcs.with({
|
null_ls.builtins.diagnostics.phpcs.with({
|
||||||
condition = function(utils)
|
condition = function(utils)
|
||||||
return not utils.root_has_file({"vendor/bin/phpcs"})
|
return not utils.root_has_file({"vendor/bin/phpcs"})
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
require'nvim-treesitter.configs'.setup {
|
require'nvim-treesitter.configs'.setup {
|
||||||
ensure_installed = "maintained", -- one of "all", "maintained" (parsers with maintainers), or a list of languages
|
-- ensure_installed = "maintained", -- one of "all", "maintained" (parsers with maintainers), or a list of languages
|
||||||
ignore_install = {"c"}, -- List of parsers to ignore installing
|
ignore_install = {"c"}, -- List of parsers to ignore installing
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true, -- false will disable the whole extension
|
enable = true, -- false will disable the whole extension
|
||||||
|
@ -8,9 +8,7 @@ require'nvim-treesitter.configs'.setup {
|
||||||
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
||||||
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
||||||
-- Instead of true it can also be a list of languages
|
-- Instead of true it can also be a list of languages
|
||||||
additional_vim_regex_highlighting = false,
|
additional_vim_regex_highlighting = false
|
||||||
},
|
},
|
||||||
indent = {
|
indent = {enable = true}
|
||||||
enable = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -276,3 +276,30 @@ blockchain
|
||||||
ABI
|
ABI
|
||||||
inline
|
inline
|
||||||
auditable
|
auditable
|
||||||
|
Creality
|
||||||
|
fungible
|
||||||
|
fungible
|
||||||
|
ERC721
|
||||||
|
ERC
|
||||||
|
hyperledger
|
||||||
|
Astra
|
||||||
|
unmerged
|
||||||
|
forEach
|
||||||
|
defineProperty
|
||||||
|
Enumerability
|
||||||
|
MDN
|
||||||
|
Iterable
|
||||||
|
TypedArray
|
||||||
|
NodeList
|
||||||
|
iterables
|
||||||
|
iterable
|
||||||
|
Roboto
|
||||||
|
Neue
|
||||||
|
Helvetica
|
||||||
|
Okta
|
||||||
|
W3C
|
||||||
|
Bracketspace
|
||||||
|
Jetpack
|
||||||
|
LearnDash
|
||||||
|
Astro
|
||||||
|
frontmatter
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue