feline.nvim
feline.nvim copied to clipboard
Question: Is this what the status line should look like?
I have just installed and my statusLine looks weird. Is this how it should look be default?
First off, there is an example screenshot in the README that shows what the default configuration looks like. Secondly, to answer your question, no, that's not what it should look like, you're probably missing a patched font and/or nvim-web-devicons which are listed in the README. Did you read the README before installing Feline?
Thanks for the prompt reply. I was comparing it against that screenshot actually, but thought maybe there is default config somewhere which I have missed.
Secondly, I did read the README
- nvim --version NVIM v0.7.0
- termguicolors enabled
- installed nvim-web-devicons
- I'm using patched font: MesloLGS NF
let me know if you need anything else.
what terminal are you using? Can you reproduce this issue in another terminal? If so, can you reproduce this issue with the provided minimal config?
I am using iterm2 on mac and I also tried on default ubuntu terminal too. I tried on both terminals within and outside tmux. Here is minimal vim config. " PLUGINS call plug#begin('~/.vim/plugged') Plug 'morhetz/gruvbox' Plug 'feline-nvim/feline.nvim' Plug 'kyazdani42/nvim-web-devicons' call plug#end()
"true colours for nvim in tmux if exists('+termguicolors') let &t_8f = "<Esc>[38;2;%lu;%lu;%lum" let &t_8b = "<Esc>[48;2;%lu;%lu;%lum" set termguicolors endif
lua << EOF require('feline').setup() EOF
Can you try using the minimal config that's provided with Feline and see if the issue still occurs? Maybe also try using a different patched font like Jetbrains Mono Nerd Font?
I ran it and this is the error I got at startup:
Error detected while processing /Users/sabah/.vim/plugged/feline.nvim/minimal_init.lua: E5113: Error while calling lua chunk: /Users/sabah/.vim/plugged/feline.nvim/minimal_init.lua:52: invalid value for option stack traceback: [C]: in function '__newindex' /Users/sabah/.vim/plugged/feline.nvim/minimal_init.lua:52: in main chunk
Do I need to have packer installed? I'm currently using vim-plug.
Do I need to have packer installed? I'm currently using vim-plug.
The minimal configuration should automatically install packer in the temp directory, so you don't have to worry about that
I am getting same error on Ubuntu terminal with JetBrains Mono NF for minimal config.
Error detected while processing /home/sabah/.vim/plugged/feline.nvim/minimal_init.lua: E5113: Error while calling lua chunk: /home/sabah/.vim/plugged/feline.nvim/minimal_init.lua:52: invalid value for option stack traceback: [C]: in function '__newindex' /home/sabah/.vim/plugged/feline.nvim/minimal_init.lua:52: in main chunk Press ENTER or type command to continue
I am getting same error on Ubuntu terminal with JetBrains Mono NF for minimal config.
Error detected while processing /home/sabah/.vim/plugged/feline.nvim/minimal_init.lua: E5113: Error while calling lua chunk: /home/sabah/.vim/plugged/feline.nvim/minimal_init.lua:52: invalid value for option stack traceback: [C]: in function '__newindex' /home/sabah/.vim/plugged/feline.nvim/minimal_init.lua:52: in main chunk Press ENTER or type command to continue
Can you try again on the latest commit of Feline?
Closing issue due to inactivity