Compare commits

..

No commits in common. "608b738ea1ab539dde2e34eb7a25bfde285e1b43" and "f14517ada3f365bd306818d24e8927336318a64f" have entirely different histories.

3 changed files with 3 additions and 23 deletions

View File

@ -116,25 +116,4 @@ if has('python3')
let g:UltiSnipsSnippetDirectories=[$HOME.'/.config/nvim/ultisnips/'] let g:UltiSnipsSnippetDirectories=[$HOME.'/.config/nvim/ultisnips/']
endif endif
Plug 'nvim-treesitter/nvim-treesitter'
call plug#end() call plug#end()
lua << EOF
require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "cpp", "javascript", "python", "vim", "latex" },
sync_install = false,
auto_install = false,
highlight = {
enable = true,
disable = function(lang, buf)
local max_filesize = 100 * 1024 -- 100 KB
local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
if ok and stats and stats.size > max_filesize then
return true
end
end,
},
}
EOF

View File

@ -56,7 +56,8 @@ c.statusbar.widgets = [ "keypress", "progress" ]
# Hints # Hints
c.hints.border = "1px solid white" c.hints.border = "1px dotted white"
c.hints.radius = 10
c.hints.chars = "asdfghjklweu" c.hints.chars = "asdfghjklweu"
# Privacy settings # Privacy settings

View File

@ -22,7 +22,7 @@
" Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' " Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
" "
" " On-demand loading " " On-demand loading
" Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle' } " Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
" Plug 'tpope/vim-fireplace', { 'for': 'clojure' } " Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
" "
" " Using a non-default branch " " Using a non-default branch