all repos — site @ 131a990a5aae32f14e24a834c7ad3e7e42f8a06e

source for my site, found at icyphox.sh

Update Neovim Lua post
Anirudh Oppiliappan x@icyphox.sh
Sun, 07 Feb 2021 13:05:26 +0530
commit

131a990a5aae32f14e24a834c7ad3e7e42f8a06e

parent

2b8dd647ad9abdfc0a557abb8c95352c51dc94f6

1 files changed, 5 insertions(+), 4 deletions(-)

jump to
M pages/blog/nvim-lua.mdpages/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