Compare commits

...

3 Commits

Author SHA1 Message Date
David JULIEN 4bffd0150a
Merge branch 'dev' into thesis
nvim: add rust config file
2022-12-02 16:56:08 +01:00
David JULIEN 17e5453287 [nvim] feat: rust config file
format-on-save !
2022-12-02 16:54:40 +01:00
David JULIEN 9660285d8d [system] feat: source rust envvar 2022-12-02 16:21:31 +01:00
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- Author : swytch
-- Created : Thursday Dec. 01, 2022 11:41:26 CET
-- License : GPLv3
-- Description : rust settings file
local format_sync_grp = vim.api.nvim_create_augroup("Format", {})
vim.api.nvim_create_autocmd("BufWritePre", {
pattern = "*.rs",
callback = function()
vim.lsp.buf.format({ timeout_ms = 200 })
end,
group = format_sync_grp,
})

View File

@ -3,6 +3,7 @@
# This file is sourced when launching a DM from startx/xinit
# path
export PATH="$(find $HOME/.local/bin -type d | tr '\n' ':' | sed 's/:$//'):$PATH"
source "$XDG_DATA_HOME/cargo/env"
# environment variables
## custom paths