diff options
| author | Romain Gonçalves <me@rgoncalves.se> | 2023-01-14 14:47:33 +0100 | 
|---|---|---|
| committer | Romain Gonçalves <me@rgoncalves.se> | 2023-01-14 14:47:33 +0100 | 
| commit | 23e2bfd987c430bb41bc7860c46c2f572e9e2db4 (patch) | |
| tree | a9a477e11fb6dbea189835147a149e56c0f03a7f /.config/nvim/after/ftplugin | |
| parent | ce6be946d024aa55a15d576388d05f90be671cf2 (diff) | |
| download | dots-23e2bfd987c430bb41bc7860c46c2f572e9e2db4.tar.gz | |
Sat Jan 14 02:47:33 PM CET 2023
Diffstat (limited to '.config/nvim/after/ftplugin')
| -rwxr-xr-x | .config/nvim/after/ftplugin/python.lua | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/.config/nvim/after/ftplugin/python.lua b/.config/nvim/after/ftplugin/python.lua index 64eb9f0..8fa85a6 100755 --- a/.config/nvim/after/ftplugin/python.lua +++ b/.config/nvim/after/ftplugin/python.lua @@ -1,5 +1,7 @@  o.colorcolumn = '80' -require"nvim-treesitter.highlight".set_custom_captures { -  ["docstring"] = "Comment", -} +-- require('nvim-treesitter.highlight').set_custom_captures { +--   ['docstring'] = 'Comment', +-- } + +vim.api.nvim_set_hl(0, '@docstring', { link = 'Comment' }) |