Compare commits
2 Commits
6d22034182
...
82ca9fa328
Author | SHA1 | Date | |
---|---|---|---|
82ca9fa328 | |||
591a14c42a |
@ -54,13 +54,23 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
extraConfigLuaPre = ''
|
extraConfigLuaPre = ''
|
||||||
vim.loader.enable()
|
local autocmd = vim.api.nvim_create_autocmd
|
||||||
|
local augroup = vim.api.nvim_create_augroup
|
||||||
|
|
||||||
|
-- General Settings
|
||||||
|
local general = augroup("General Settings", { clear = true })
|
||||||
|
|
||||||
|
autocmd("BufEnter", {
|
||||||
|
callback = function()
|
||||||
|
vim.opt.formatoptions:remove { "c", "r", "o" }
|
||||||
|
end,
|
||||||
|
group = general,
|
||||||
|
desc = "Disable New Line Comment",
|
||||||
|
})
|
||||||
'';
|
'';
|
||||||
|
|
||||||
extraConfigLuaPost = ''
|
extraConfigLuaPost = ''
|
||||||
vim.notify = require("mini.notify").make_notify()
|
vim.notify = require("mini.notify").make_notify()
|
||||||
|
|
||||||
vim.opt.formatoptions:remove({'c', 'r', 'o'})
|
|
||||||
'';
|
'';
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
stylua
|
stylua
|
||||||
|
@ -10,4 +10,4 @@ fi
|
|||||||
touch "$name"
|
touch "$name"
|
||||||
chmod +x "$name"
|
chmod +x "$name"
|
||||||
echo "#!/usr/bin/env sh" > "$name"
|
echo "#!/usr/bin/env sh" > "$name"
|
||||||
nvim "+ normal Gzzoo" "$name"
|
nvim "+ normal Gzzo" "$name"
|
||||||
|
Loading…
Reference in New Issue
Block a user