mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
cat
This commit is contained in:
parent
e9a1605db5
commit
3f3a9b2950
2 changed files with 22 additions and 18 deletions
|
|
@ -1,3 +1,5 @@
|
|||
vim = vim or {}
|
||||
|
||||
-- Line Numbering
|
||||
vim.o.relativenumber = true
|
||||
vim.o.number = true
|
||||
|
|
@ -56,3 +58,6 @@
|
|||
on_attach = on_attach,
|
||||
}
|
||||
end
|
||||
|
||||
vim.cmd('highlight! link LspDiagnosticsVirtualTextError LspDiagnosticsVirtualTextErrorTransparent')
|
||||
vim.cmd('highlight! LspDiagnosticsVirtualTextErrorTransparent guibg=none gui=none blend=50')
|
||||
|
|
|
|||
|
|
@ -26,13 +26,13 @@ return packer.startup(function(use)
|
|||
-- Neo-Tree
|
||||
use {"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v2.x",
|
||||
requires = {
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
-- Vim Snippets
|
||||
use {
|
||||
'garbas/vim-snipmate',
|
||||
|
|
@ -52,7 +52,7 @@ return packer.startup(function(use)
|
|||
options = {
|
||||
theme = 'auto'
|
||||
}
|
||||
}
|
||||
}
|
||||
end
|
||||
}
|
||||
|
||||
|
|
@ -63,33 +63,32 @@ return packer.startup(function(use)
|
|||
}
|
||||
|
||||
-- Git Integration
|
||||
use { 'TimUntersberger/neogit',
|
||||
use { 'TimUntersberger/neogit',
|
||||
requires = 'nvim-lua/plenary.nvim'
|
||||
}
|
||||
|
||||
-- Autobracket
|
||||
use {'windwp/nvim-autopairs',
|
||||
config = function()
|
||||
require('nvim-autopairs').setup()
|
||||
use {'windwp/nvim-autopairs',
|
||||
config = function()
|
||||
require('nvim-autopairs').setup()
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
-- Color Preview
|
||||
use { 'ap/vim-css-color',
|
||||
ft = {
|
||||
'css',
|
||||
'sass',
|
||||
'scss',
|
||||
'rasi',
|
||||
'markdown'
|
||||
}
|
||||
use { 'ap/vim-css-color',
|
||||
ft = {
|
||||
'css',
|
||||
'sass',
|
||||
'scss',
|
||||
'rasi',
|
||||
'markdown'
|
||||
}
|
||||
}
|
||||
|
||||
-- LSP Config
|
||||
use 'neovim/nvim-lspconfig'
|
||||
use 'kabouzeid/nvim-lspinstall'
|
||||
|
||||
|
||||
use {'hrsh7th/nvim-compe',
|
||||
config = function()
|
||||
require('compe').setup({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue