feat: init neovim workflow
parent
427caae9f0
commit
c1ebdad167
|
@ -0,0 +1,68 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.2.0/github-markdown-dark.min.css"
|
||||
/>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Inter&family=JetBrains+Mono&family=Martian+Mono&family=Recursive&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<title>haunt98 posts</title>
|
||||
</head>
|
||||
<style>
|
||||
.markdown-body {
|
||||
box-sizing: border-box;
|
||||
min-width: 200px;
|
||||
max-width: 980px;
|
||||
margin: 0 auto;
|
||||
padding: 45px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.markdown-body {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.markdown-body {
|
||||
font-family: "Inter", sans-serif;
|
||||
<!-- font-family: "Recursive", sans-serif; -->
|
||||
}
|
||||
|
||||
.markdown-body code,
|
||||
.markdown-body pre {
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
<!-- font-family: "Martian Mono", monospace; -->
|
||||
}
|
||||
</style>
|
||||
<body class="markdown-body">
|
||||
<div><a href="index.html">Index</a></div>
|
||||
<h1>
|
||||
<a
|
||||
id="user-content-my-neovim-workflow"
|
||||
class="anchor"
|
||||
aria-hidden="true"
|
||||
href="#my-neovim-workflow"
|
||||
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
||||
>My neovim workflow
|
||||
</h1>
|
||||
<p>Search multiple words:</p>
|
||||
<div class="highlight highlight-text-adblock">
|
||||
<pre>:/\vword1|word2|word3</pre>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
Feel free to ask me via
|
||||
<a href="mailto:hauvipapro+posts@gmail.com">email</a> or
|
||||
<a rel="me" href="https://hachyderm.io/@haunguyen">Mastodon</a>. Source
|
||||
code is available on
|
||||
<a href="https://github.com/haunt98/posts-go">GitHub</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -67,6 +67,7 @@
|
|||
<li><a href="2023-04-01-games.html">Games 4 fun</a></li>
|
||||
<li><a href="2023-04-17-naming.html">Naming things</a></li>
|
||||
<li><a href="2023-04-17-keeb.html">Keeb</a></li>
|
||||
<li><a href="2023-05-03-neovim.md">My neovim workflow</a></li>
|
||||
</ul>
|
||||
|
||||
<div>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
# My neovim workflow
|
||||
|
||||
Search multiple words:
|
||||
|
||||
```txt
|
||||
:/\vword1|word2|word3
|
||||
```
|
|
@ -18,3 +18,4 @@ This is where I dump my thoughts.
|
|||
- [Games 4 fun](2023-04-01-games.html)
|
||||
- [Naming things](2023-04-17-naming.html)
|
||||
- [Keeb](2023-04-17-keeb.html)
|
||||
- [My neovim workflow](2023-05-03-neovim.md)
|
||||
|
|
Loading…
Reference in New Issue