Merge branch 'datasci' into datasci-jupynium
This commit is contained in:
commit
5645e75db7
23
init.lua
23
init.lua
|
@ -282,6 +282,11 @@ vim.opt.rtp:prepend(lazypath)
|
||||||
require('lazy').setup({
|
require('lazy').setup({
|
||||||
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
||||||
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
||||||
|
'tpope/vim-fugitive', -- git integration
|
||||||
|
'jpalardy/vim-slime', -- for piping code into external service like a REPL
|
||||||
|
'godlygeek/tabular',
|
||||||
|
-- for showing the `colorcolumn` 80 and 120 reference lines as thin lines:
|
||||||
|
'xiyaowong/virtcolumn.nvim',
|
||||||
'mbbill/undotree', -- recommended undo history system
|
'mbbill/undotree', -- recommended undo history system
|
||||||
{
|
{
|
||||||
'jpalardy/vim-slime', -- for piping code into external service like a REPL
|
'jpalardy/vim-slime', -- for piping code into external service like a REPL
|
||||||
|
@ -826,12 +831,12 @@ require('lazy').setup({
|
||||||
-- `friendly-snippets` contains a variety of premade snippets.
|
-- `friendly-snippets` contains a variety of premade snippets.
|
||||||
-- See the README about individual language/framework/plugin snippets:
|
-- See the README about individual language/framework/plugin snippets:
|
||||||
-- https://github.com/rafamadriz/friendly-snippets
|
-- https://github.com/rafamadriz/friendly-snippets
|
||||||
-- {
|
{
|
||||||
-- 'rafamadriz/friendly-snippets',
|
'rafamadriz/friendly-snippets',
|
||||||
-- config = function()
|
config = function()
|
||||||
-- require('luasnip.loaders.from_vscode').lazy_load()
|
require('luasnip.loaders.from_vscode').lazy_load()
|
||||||
-- end,
|
end,
|
||||||
-- },
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'saadparwaiz1/cmp_luasnip',
|
'saadparwaiz1/cmp_luasnip',
|
||||||
|
@ -935,6 +940,12 @@ require('lazy').setup({
|
||||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
||||||
vim.cmd.colorscheme 'tokyonight-night'
|
vim.cmd.colorscheme 'tokyonight-night'
|
||||||
|
|
||||||
|
vim.cmd [[
|
||||||
|
highlight Normal guibg=none ctermbg=none
|
||||||
|
highlight NonText guibg=none ctermbg=none
|
||||||
|
highlight NormalNC guibg=none ctermbg=none
|
||||||
|
]]
|
||||||
|
|
||||||
-- You can configure highlights by doing something like:
|
-- You can configure highlights by doing something like:
|
||||||
vim.cmd.hi 'Comment gui=none'
|
vim.cmd.hi 'Comment gui=none'
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue