Skip to content

Commit

Permalink
neovim: Disable conceal as much as I can
Browse files Browse the repository at this point in the history
  • Loading branch information
juanibiapina committed Mar 30, 2024
1 parent cb41500 commit d3843b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions dotfiles/nvim/.config/nvim/after/ftplugin/help.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
setlocal conceallevel=0
3 changes: 3 additions & 0 deletions dotfiles/nvim/.config/nvim/lua/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ vim.o.showmatch = true
vim.o.hlsearch = true
vim.o.incsearch = true

-- Disable conceal
vim.o.conceallevel = 0

-- Enable break indent
vim.o.breakindent = true

Expand Down

0 comments on commit d3843b7

Please sign in to comment.