Moving all the nvim files to a subdirectory and updated the deploy script.

This commit is contained in:
2024-03-04 14:08:47 -06:00
parent 3c6b5ec1e1
commit 55765e8cf6
21 changed files with 2 additions and 2 deletions

8
nvim/lua/lsp.lua Normal file
View File

@@ -0,0 +1,8 @@
vim.lsp.handlers['textDocument/publishDiagnostics'] = vim.lsp.with(
vim.lsp.diagnostic.on_publish_diagnostics, {
underline = true,
virtual_text = true,
signs = true,
update_in_insert = true,
}
)