Update Neovim Lua post
Anirudh Oppiliappan x@icyphox.sh
Sun, 07 Feb 2021 13:05:26 +0530
1 files changed,
5 insertions(+),
4 deletions(-)
jump to
M
pages/blog/nvim-lua.md
→
pages/blog/nvim-lua.md
@@ -253,9 +253,9 @@ -- statusline.lua
vim.api.nvim_exec( [[ - hi PrimaryBlock ctermfg=06 ctermbg=00 - hi SecondaryBlock ctermfg=08 ctermbg=00 - hi Blanks ctermfg=07 ctermbg=00 + hi PrimaryBlock ctermfg=06 ctermbg=00 + hi SecondaryBlock ctermfg=08 ctermbg=00 + hi Blanks ctermfg=07 ctermbg=00 ]], false) ```@@ -282,7 +282,8 @@ '%{&filetype}',
} ``` -Finally, with the power of `table.concat()`, set your statusline. +Finally, with the power of `table.concat()`, set your statusline. This +is akin to doing a series of string concatenations, but way faster. ```lua -- statusline.lua