Files
dotfiles/nvim/.config/nvim/tools.lua
2021-08-13 16:28:22 -05:00

13 lines
263 B
Lua

local api = vim.api
local M = {}
function M.makeScratch()
api.nvim_command [[enew]] -- equivalent to :enew
vim.bo[0].buftype=nofile -- set the current buffer's (buffer 0) buftype to nofile
vim.bo[0].bufhidden=hide
vim.bo[0].swapfile=false
end
return M