1
0
Fork 0

chore: updates here and there

This commit is contained in:
Arthur Khachaturov 2024-08-17 18:16:07 +03:00
parent ed190866f5
commit 05708570cb
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
14 changed files with 58 additions and 67 deletions

View file

@ -50,7 +50,8 @@ local servers = {
gopls = {},
rust_analyzer = {},
cmake = {},
bashls = {}
bashls = {},
hls = {}
}
local capabilities = vim.lsp.protocol.make_client_capabilities()

View file

@ -12,8 +12,9 @@ vim.o.mouse = 'a'
vim.o.breakindent = true
vim.o.tabstop = 4
vim.o.shiftwidth = 4
vim.o.expandtab = true
vim.o.smartindent = false
vim.o.softtabstop = 0
vim.o.expandtab = false
vim.o.smartindent = true
-- Save undo history
vim.o.undofile = true

View file

@ -14,6 +14,6 @@ return {
{ 'akinsho/bufferline.nvim', config = {} },
{ 'ethanholz/nvim-lastplace', config = {} },
{ 'numToStr/Comment.nvim', opts = {} },
-- { 'wakatime/vim-wakatime', event = 'VeryLazy' },
{ 'wakatime/vim-wakatime', event = 'VeryLazy' },
{ "folke/trouble.nvim", dependencies = { "nvim-tree/nvim-web-devicons" }, opts = { }, }
}