navarasu / onedark.nvim

One dark and light colorscheme for neovim >= 0.5.0 written in lua based on Atom's One Dark and Light theme. Additionally, it comes with 5 color variant styles
MIT License
1.61k stars 164 forks source link

Disable italic comments not found #40

Closed brunodavi closed 3 years ago

brunodavi commented 3 years ago

Good morning, I'm having trouble changing the settings to disable italicized comments on nvim running on termux

" Theme:
" A comment...
let g:onedark_style = 'darker'
let g:onedark_italic_comment = 0
colorscheme onedark
Neovim Version ``` NVIM v0.5.1 Build type: Release LuaJIT 2.1.0-beta3 Compilation: /home/builder/.termux-build/_cache/android-r21d-api-24-v5/bin/clang -march=armv7-a -mfpu=neon -mfloat-abi=softfp -mthumb -fstack-protector-strong -Oz --target=armv7a-linux-androideabi24 -I/data/data/com.termux/files/usr/include -DNVIM_TS_HAS_SET_MATCH_LIMIT -O2 -DNDEBUG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fno-common -fdiagnostics-color=always -DINCLUDE_GENERATED_DECLARATIONS -D_GNU_SOURCE -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -DMIN_LOG_LEVEL=3 -I/home/builder/.termux-build/neovim/build/config -I/home/builder/.termux-build/neovim/src/src -I/data/data/com.termux/files/usr/include -I/home/builder/.termux-build/neovim/build/src/nvim/auto -I/home/builder/.termux-build/neovim/build/include Compiled by builder@1ebcb695cc80 Features: +acl +iconv +tui See ":help feature-compile" system vimrc file: "$VIM/sysinit.vim" fall-back for $VIM: "/data/data/com.termux/files/usr/share/nvim" Run :checkhealth for more info ```
Screenshot ![Screenshot_Termux](https://user-images.githubusercontent.com/48166556/143021929-63aae3e7-4855-4956-889b-7d0947fc81b9.jpg)
brunodavi commented 3 years ago

I just learned how to do it 😅

...
< let g:onedark_italic_comment = 0
---
> let g:onedark_italic_comment = v:false
...