Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins. git.anhgelus.world/anhgelus/dotfiles
void niri fish neovim nvim vim dotfiles linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(nvim): enable lsp diagnostic and use ty lsp for python

+6 -1
+5
config/nvim/lua/options.lua
··· 17 17 18 18 vim.opt.colorcolumn = "120" 19 19 20 + vim.diagnostic.enable = true 21 + vim.diagnostic.config({ 22 + virtual_lines = true, 23 + }) 24 + 20 25 vim.filetype.add({ 21 26 extension = { 22 27 heex = 'eelixir'
+1 -1
config/nvim/lua/plugins/lsp.lua
··· 16 16 }, 17 17 opts = { 18 18 ensure_installed = { 19 - "pylsp", 19 + "ty", 20 20 "elixirls", 21 21 "gopls" 22 22 },