mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -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
|
-- Line Numbering
|
||||||
vim.o.relativenumber = true
|
vim.o.relativenumber = true
|
||||||
vim.o.number = true
|
vim.o.number = true
|
||||||
|
|
@ -56,3 +58,6 @@
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
}
|
}
|
||||||
end
|
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
|
-- Neo-Tree
|
||||||
use {"nvim-neo-tree/neo-tree.nvim",
|
use {"nvim-neo-tree/neo-tree.nvim",
|
||||||
branch = "v2.x",
|
branch = "v2.x",
|
||||||
requires = {
|
requires = {
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
"MunifTanjim/nui.nvim",
|
"MunifTanjim/nui.nvim",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Vim Snippets
|
-- Vim Snippets
|
||||||
use {
|
use {
|
||||||
'garbas/vim-snipmate',
|
'garbas/vim-snipmate',
|
||||||
|
|
@ -52,7 +52,7 @@ return packer.startup(function(use)
|
||||||
options = {
|
options = {
|
||||||
theme = 'auto'
|
theme = 'auto'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -63,33 +63,32 @@ return packer.startup(function(use)
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Git Integration
|
-- Git Integration
|
||||||
use { 'TimUntersberger/neogit',
|
use { 'TimUntersberger/neogit',
|
||||||
requires = 'nvim-lua/plenary.nvim'
|
requires = 'nvim-lua/plenary.nvim'
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Autobracket
|
-- Autobracket
|
||||||
use {'windwp/nvim-autopairs',
|
use {'windwp/nvim-autopairs',
|
||||||
config = function()
|
config = function()
|
||||||
require('nvim-autopairs').setup()
|
require('nvim-autopairs').setup()
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
-- Color Preview
|
-- Color Preview
|
||||||
use { 'ap/vim-css-color',
|
use { 'ap/vim-css-color',
|
||||||
ft = {
|
ft = {
|
||||||
'css',
|
'css',
|
||||||
'sass',
|
'sass',
|
||||||
'scss',
|
'scss',
|
||||||
'rasi',
|
'rasi',
|
||||||
'markdown'
|
'markdown'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
-- LSP Config
|
-- LSP Config
|
||||||
use 'neovim/nvim-lspconfig'
|
use 'neovim/nvim-lspconfig'
|
||||||
use 'kabouzeid/nvim-lspinstall'
|
use 'kabouzeid/nvim-lspinstall'
|
||||||
|
|
||||||
use {'hrsh7th/nvim-compe',
|
use {'hrsh7th/nvim-compe',
|
||||||
config = function()
|
config = function()
|
||||||
require('compe').setup({
|
require('compe').setup({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue