mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-29 15:10:28 +00:00
Merge branch 'main' of personalgit:d0zingcat/dotfiles
This commit is contained in:
@@ -81,7 +81,7 @@ local settings = {
|
||||
|
||||
require('lsp-setup').setup(settings)
|
||||
|
||||
require('lsp_signature').setup({})
|
||||
-- require('lsp_signature').setup({})
|
||||
require('lsp-colors').setup({})
|
||||
|
||||
local border = { '╭', '─', '╮', '│', '╯', '─', '╰', '│' }
|
||||
|
||||
@@ -34,7 +34,9 @@ require('nvim-tree').setup({
|
||||
update_root = true,
|
||||
},
|
||||
filters = {
|
||||
custom = { '.git' }, -- ignore .git
|
||||
custom = {
|
||||
'.git$'
|
||||
},
|
||||
},
|
||||
--auto_close = true,
|
||||
hijack_netrw = true,
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
local ncmd = vim.api.nvim_command
|
||||
|
||||
require('nvim-treesitter.configs').setup({
|
||||
ensure_installed = { 'c', 'lua', 'rust', 'go', 'python', 'zig', 'markdown', 'solidity', 'jsonnet', 'vim' },
|
||||
ensure_installed = { 'c', 'lua', 'rust', 'go', 'python', 'zig', 'markdown', 'solidity', 'jsonnet', 'vim',
|
||||
'javascript', 'typescript' },
|
||||
highlight = {
|
||||
enable = true,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user