various revisions

This commit is contained in:
Nydragon 2024-04-06 00:26:03 +09:00
parent 97ccdab2a8
commit 8a03b4415d
4 changed files with 24 additions and 21 deletions

View file

@ -19,6 +19,9 @@ local function build()
}
end,
},
nix = {
require("formatter.filetypes.nix").nixfmt,
},
["*"] = {
require("formatter.filetypes.any").remove_trailing_whitespace,
},

View file

@ -1,7 +1,6 @@
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
local function open_nvim_tree(data)
-- buffer is a real file on the disk
local real_file = vim.fn.filereadable(data.file) == 1

View file

@ -98,6 +98,7 @@ require("lazy").setup({
"hrsh7th/cmp-cmdline",
"hrsh7th/cmp-path",
"hrsh7th/cmp-nvim-lua",
"hrsh7th/cmp-vsnip",
},
init = function()
require("nvim-cmp-config")