Compare commits
No commits in common. "aa66afe5557a12b0ef48771c17de69542d588f09" and "d4085c80c268fa36f9bcd5ff98843b627eff6db1" have entirely different histories.
aa66afe555
...
d4085c80c2
4 changed files with 11 additions and 17 deletions
|
@ -1,6 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
GIT_DIR="${HOME}/stuff/notes"
|
||||
notes
|
||||
notify-send "$(git -C $GIT_DIR commit -m ":memo:" -- notes)"
|
||||
|
|
@ -3,7 +3,7 @@ $mainMod = SUPER
|
|||
# Program binds
|
||||
bind = $mainMod SHIFT, RETURN, exec, wezterm
|
||||
bind = $mainMod, P, exec, ~/.config/rofi/bin/launcher.sh
|
||||
bind = $mainMod, N, exec, wezterm start --class "notes-editor" -e notes-commit
|
||||
bind = $mainMod, N, exec, wezterm start --class "notes-editor" -e notes
|
||||
|
||||
bind = $mainMod SHIFT, Q, killactive,
|
||||
bind = $mainMod SHIFT, L, exec, lock
|
||||
|
|
|
@ -15,7 +15,7 @@ require("lazy").setup({
|
|||
{ import = "lazyvim.plugins.extras.lang.tex" },
|
||||
{ import = "lazyvim.plugins.extras.lang.docker" },
|
||||
-- { import = "lazyvim.plugins.extras.lang.markdown" },
|
||||
-- { import = "lazyvim.plugins.extras.lsp.none-ls" },
|
||||
{ import = "lazyvim.plugins.extras.lsp.none-ls" },
|
||||
{ import = "plugins" },
|
||||
{ import = "plugins.language" },
|
||||
},
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
return {
|
||||
require("util").setup_lang({ treesitter = { "lua" }, mason = { "stylua", "lua-language-server" } }),
|
||||
-- {
|
||||
-- "nvimtools/none-ls.nvim",
|
||||
-- opts = function(_, opts)
|
||||
-- local nls = require("null-ls")
|
||||
-- opts.sources = vim.list_extend(opts.sources or {}, {
|
||||
-- nls.builtins.formatting["stylua"],
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"nvimtools/none-ls.nvim",
|
||||
opts = function(_, opts)
|
||||
local nls = require("null-ls")
|
||||
opts.sources = vim.list_extend(opts.sources or {}, {
|
||||
nls.builtins.formatting["stylua"],
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue