Vim stuff
This commit is contained in:
parent
440ded63c5
commit
d2a6b0d3ad
2 changed files with 88 additions and 63 deletions
|
@ -2,11 +2,11 @@
|
||||||
FontFamily = "VictorMono Nerd Font"
|
FontFamily = "VictorMono Nerd Font"
|
||||||
DisableLigatures = false
|
DisableLigatures = false
|
||||||
|
|
||||||
Clipboard = true
|
Clipboard = false
|
||||||
|
|
||||||
SmoothScroll = true
|
SmoothScroll = true
|
||||||
|
|
||||||
IndentGuide = true
|
IndentGuide = false
|
||||||
|
|
||||||
ExtCmdline = true
|
ExtCmdline = true
|
||||||
ExtPopupmenu = true
|
ExtPopupmenu = true
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
require("packer").startup({{
|
require("packer").startup(
|
||||||
|
{
|
||||||
|
{
|
||||||
-- plugin manager
|
-- plugin manager
|
||||||
"wbthomason/packer.nvim",
|
"wbthomason/packer.nvim",
|
||||||
|
|
||||||
|
@ -11,6 +13,18 @@ require("packer").startup({{
|
||||||
-- syntax parsing
|
-- syntax parsing
|
||||||
"sheerun/vim-polyglot",
|
"sheerun/vim-polyglot",
|
||||||
|
|
||||||
|
-- completion
|
||||||
|
"ervandew/supertab",
|
||||||
|
|
||||||
|
-- commenting / uncommenting
|
||||||
|
"b3nj5m1n/kommentary",
|
||||||
|
|
||||||
|
-- highlights indent
|
||||||
|
{
|
||||||
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
|
branch = "lua",
|
||||||
|
},
|
||||||
|
|
||||||
-- underlines all words that match the word under the cursor
|
-- underlines all words that match the word under the cursor
|
||||||
"yamatsum/nvim-cursorline",
|
"yamatsum/nvim-cursorline",
|
||||||
|
|
||||||
|
@ -57,6 +71,9 @@ require("packer").startup({{
|
||||||
-- finds errors & warnings in code
|
-- finds errors & warnings in code
|
||||||
"vim-syntastic/syntastic",
|
"vim-syntastic/syntastic",
|
||||||
|
|
||||||
|
-- git integration
|
||||||
|
"tpope/vim-fugitive",
|
||||||
|
|
||||||
-- tools for rust programming
|
-- tools for rust programming
|
||||||
"rust-lang/rust.vim",
|
"rust-lang/rust.vim",
|
||||||
|
|
||||||
|
@ -68,7 +85,9 @@ require("packer").startup({{
|
||||||
|
|
||||||
-- discord rich presence
|
-- discord rich presence
|
||||||
"andweeb/presence.nvim",
|
"andweeb/presence.nvim",
|
||||||
}})
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
-- Setting plugin-specific variables --
|
-- Setting plugin-specific variables --
|
||||||
|
|
||||||
|
@ -94,6 +113,12 @@ vim.o.background = "dark"
|
||||||
-- lush.nvim
|
-- lush.nvim
|
||||||
vim.g.colors_name = "onedark_nvim"
|
vim.g.colors_name = "onedark_nvim"
|
||||||
|
|
||||||
|
-- coc.nvim
|
||||||
|
vim.g.hidden = 1
|
||||||
|
vim.g.cmdheight = 2
|
||||||
|
vim.g.updatetime = 300
|
||||||
|
vim.g.signcolumn = "number"
|
||||||
|
|
||||||
-- syntastic
|
-- syntastic
|
||||||
vim.g.syntastic_always_populate_loc_list = 1
|
vim.g.syntastic_always_populate_loc_list = 1
|
||||||
vim.g.syntastic_auto_loc_list = 1
|
vim.g.syntastic_auto_loc_list = 1
|
||||||
|
|
Loading…
Reference in a new issue