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"
|
||||
DisableLigatures = false
|
||||
|
||||
Clipboard = true
|
||||
Clipboard = false
|
||||
|
||||
SmoothScroll = true
|
||||
|
||||
IndentGuide = true
|
||||
IndentGuide = false
|
||||
|
||||
ExtCmdline = true
|
||||
ExtPopupmenu = true
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
require("packer").startup({{
|
||||
require("packer").startup(
|
||||
{
|
||||
{
|
||||
-- plugin manager
|
||||
"wbthomason/packer.nvim",
|
||||
|
||||
|
@ -11,6 +13,18 @@ require("packer").startup({{
|
|||
-- syntax parsing
|
||||
"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
|
||||
"yamatsum/nvim-cursorline",
|
||||
|
||||
|
@ -57,6 +71,9 @@ require("packer").startup({{
|
|||
-- finds errors & warnings in code
|
||||
"vim-syntastic/syntastic",
|
||||
|
||||
-- git integration
|
||||
"tpope/vim-fugitive",
|
||||
|
||||
-- tools for rust programming
|
||||
"rust-lang/rust.vim",
|
||||
|
||||
|
@ -68,7 +85,9 @@ require("packer").startup({{
|
|||
|
||||
-- discord rich presence
|
||||
"andweeb/presence.nvim",
|
||||
}})
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
-- Setting plugin-specific variables --
|
||||
|
||||
|
@ -94,6 +113,12 @@ vim.o.background = "dark"
|
|||
-- lush.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
|
||||
vim.g.syntastic_always_populate_loc_list = 1
|
||||
vim.g.syntastic_auto_loc_list = 1
|
||||
|
|
Loading…
Reference in a new issue