This is the first commit that actually adds files to the repo. Yes it's a bad commit but now the major features are here
12 lines
144 B
Lua
12 lines
144 B
Lua
local ok, bufferline = pcall(require,'bufferline')
|
|
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
bufferline.setup {
|
|
options = {
|
|
diagnostics = "nvim_lsp"
|
|
}
|
|
}
|