updates
This commit is contained in:
parent
d1f1464903
commit
a4ba3c4f5d
3 changed files with 64 additions and 298 deletions
6
lua/plugins/mason.lua
Normal file
6
lua/plugins/mason.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
{
|
||||
'williamboman/mason-lspconfig.nvim',
|
||||
branch = 'main', -- force v2.x from the main branch
|
||||
},
|
||||
}
|
||||
11
lua/plugins/templates/index_tsx_template.tsx
Normal file
11
lua/plugins/templates/index_tsx_template.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import './styles.css';
|
||||
|
||||
const {{ComponentName}} = () => {
|
||||
return (
|
||||
<div className="{{ComponentName}}">
|
||||
<h1>{{ComponentName}} Component</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default {{ComponentName}};
|
||||
Loading…
Add table
Add a link
Reference in a new issue