# HG changeset patch # User zegervdv # Date 1598942643 -7200 # Node ID d48b05b03ddffa5fd4f6b3e4f8a3f5a772d94d6f # Parent 3c5523f18d0a1a65549f49acb36b7afc6854637e Add treesitter based completion diff -r 3c5523f18d0a -r d48b05b03ddf dot_config/kitty/kitty.conf --- a/dot_config/kitty/kitty.conf Mon Aug 31 08:33:52 2020 +0200 +++ b/dot_config/kitty/kitty.conf Tue Sep 01 08:44:03 2020 +0200 @@ -40,3 +40,7 @@ selection_background #ffc24b clipboard_control write-primary write-clipboard no-append + +draw_minimal_borders yes +active_border_color #b3deef +inactive_border_color #282828 diff -r 3c5523f18d0a -r d48b05b03ddf dot_config/nvim/init.lua --- a/dot_config/nvim/init.lua Mon Aug 31 08:33:52 2020 +0200 +++ b/dot_config/nvim/init.lua Tue Sep 01 08:44:03 2020 +0200 @@ -44,6 +44,7 @@ default = { {complete_items = {'lsp', 'snippet'}}, {complete_items = {'path'}, triggered_only = {'/'}}, + {complete_items = {'ts'}}, {complete_items = {'buffer'}}, }, string = { diff -r 3c5523f18d0a -r d48b05b03ddf dot_config/nvim/init.vim --- a/dot_config/nvim/init.vim Mon Aug 31 08:33:52 2020 +0200 +++ b/dot_config/nvim/init.vim Tue Sep 01 08:44:03 2020 +0200 @@ -119,6 +119,7 @@ Plug '~/Projects/nvim-treesitter' Plug 'nvim-treesitter/playground' Plug 'steelsojka/completion-buffers' + Plug 'nvim-treesitter/completion-treesitter' endif " Copying