oneofone.dev

It’s not just a blog, it’s a µBlog!

func brain() {
  for {
      go omgItIsAShiny()
  }
}

Securing Neovim With Firejail

HowTo secure neovim with firejail

2023-10-09 · 2 min · OneOfOne

Neovim Biome Setup

A quick guide on how to setup Biome in neovim with lazy.vim, lspconfig and none-ls.

2023-10-06 · 2 min · OneOfOne

Setting up lsp + gopls + rust_analyzer in neovim

A simple setup for lsp + gopls + rust_analyzer in neovim using lazyvim. This assumes you already have lazyvim (or another package manager) setup. If you’re using the lazyvim starter, you can just add { import = "lazyvim.plugins.extras.lang.go" }, { import = "lazyvim.plugins.extras.lang.rust" }, to your ~/.config/nvim/lua/config/lazy.lua. Otherwise you can set it up with: ~/.config/nvim/lua/lsp.lua return { { 'neovim/nvim-lspconfig', opts = { inlay_hints = { enabled = false, }, diagnostics = { virtual_text = { prefix = "icons" } }, capabilities = { textDocument = { foldingRange = { dynamicRegistration = false, lineFoldingOnly = true, }, completion = { completionItem = { snippetSupport = true, }, }, }, }, showMessage = { messageActionItem = { additionalPropertiesSupport = true, }, }, flags = { debounce_text_changes = 150, }, servers = { rust_analyzer = { settings = { ["rust-analyzer"] = { procMacro = { enable = true }, cargo = { allFeatures = true }, checkOnSave = { command = "clippy", extraArgs = { "--no-deps" }, }, }, }, }, gopls = { settings = { gopls = { gofumpt = true, codelenses = { gc_details = false, generate = true, regenerate_cgo = true, run_govulncheck = true, test = true, tidy = true, upgrade_dependency = true, vendor = true, }, hints = { assignVariableTypes = true, compositeLiteralFields = true, compositeLiteralTypes = true, constantValues = true, functionTypeParameters = true, parameterNames = true, rangeVariableTypes = true, }, analyses = { fieldalignment = true, nilness = true, unusedparams = true, unusedwrite = true, useany = true, }, usePlaceholders = true, completeUnimported = true, staticcheck = true, directoryFilters = { "-....

2023-09-24 · 2 min · OneOfOne

NATO Phonetic Alphabet Generator In Rust

A super simple NATO alphabet generator.

2023-09-08 · 3 min · OneOfOne

Configure vim-go (gopls) the easy way

An (outdated) guide to configuring vim-go (go-pls) in neovim.

2021-07-15 · 1 min · OneOfOne

Go / Go2 scratch script (or a quick local go playground)

A little script for a local go playground.

2020-10-04 · 2 min · OneOfOne

ThinkOrSwim Java-8 Launcher

ToS java8 launcher script.

2020-10-04 · 1 min · OneOfOne

ThinkOrSwim Buy/Sell Alerts based on PPS

Thinkorswim Buy/Sell Alerts based on PPS

2020-09-30 · 2 min · OneOfOne

Vanity Go Import Paths with NGINX

The tl;dr version of setting up vanity Go import urls using nginx only.

2020-09-12 · 1 min · OneOfOne

A new decade, a new site and blog

After spending countless weekends working on different UIs for my new site, I ended up using hugo, and here we are… The Idea is that it’s a µBlog (micro blog), to share random things that I care about in a short form.

2020-07-26 · 1 min · OneOfOne