updates
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
c.ServerApp.port = 9999
|
||||
c.ServerApp.allow_remote_access = True
|
||||
c.ServerApp.root_dir = '.'
|
||||
c.ServerApp.ip = '0.0.0.0'
|
||||
c.ServerApp.certfile = '/home/hjalmarlucius/.jupyter/mycert.pem'
|
||||
c.ServerApp.keyfile = '/home/hjalmarlucius/.jupyter/mykey.key'
|
||||
|
||||
+5
-6
@@ -1,17 +1,14 @@
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
-- Install package manager
|
||||
-- https://github.com/folke/lazy.nvim
|
||||
-- `:help lazy.nvim.txt` for more info
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"--branch=stable",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
"--branch=stable", -- latest stable release
|
||||
lazypath,
|
||||
})
|
||||
end
|
||||
@@ -71,6 +68,7 @@ require("lazy").setup({
|
||||
local map = vim.keymap.set
|
||||
local opts = { silent = true, noremap = true }
|
||||
map({ "n", "v" }, "<CR>", "<cmd>HopWord<cr>", opts)
|
||||
map({ "n", "v" }, "<M-CR>", "<cmd>HopWord<cr>", opts)
|
||||
end,
|
||||
},
|
||||
{
|
||||
@@ -266,7 +264,7 @@ require("lazy").setup({
|
||||
"tpope/vim-fugitive",
|
||||
config = function()
|
||||
local map = vim.keymap.set
|
||||
map("", "<C-g>", "<cmd>vertical Git<cr>:vertical resize 60<cr>", {})
|
||||
map("", "<C-g>", "<cmd>vertical Git<cr>", {})
|
||||
map("", "<leader>gB", "<cmd>Git blame<cr>", {})
|
||||
map("", "<leader>gp", "<cmd>Git! push<cr>", {})
|
||||
map("", "<leader>gP", "<cmd>Git! push -f<cr>", {})
|
||||
@@ -300,6 +298,7 @@ require("lazy").setup({
|
||||
numhl = true,
|
||||
linehl = false,
|
||||
word_diff = false,
|
||||
signs_staged_enable = false,
|
||||
on_attach = function(bufnr)
|
||||
local gs = package.loaded.gitsigns
|
||||
|
||||
|
||||
@@ -6,9 +6,42 @@
|
||||
|
||||
config_version: 2
|
||||
settings:
|
||||
bindings.commands:
|
||||
global:
|
||||
normal:
|
||||
<: tab-move -
|
||||
<Ctrl+Shift+Tab>: tab-prev
|
||||
<Ctrl+Tab>: tab-next
|
||||
<Ctrl+h>: history
|
||||
<Ctrl+l>: cmd-set-text :open {url:pretty}
|
||||
<Ctrl+r>: restart
|
||||
<F10>: config-cycle colors.webpage.darkmode.enabled true false ;; restart
|
||||
<F11>: config-cycle tabs.position top left
|
||||
<F12>: view-source
|
||||
'>': tab-move +
|
||||
D: tab-close
|
||||
J: tab-prev
|
||||
K: tab-next
|
||||
M: null
|
||||
d: null
|
||||
gB: null
|
||||
gb: null
|
||||
m: cmd-set-text :quickmark-add {url:pretty} "
|
||||
pw: spawn --userscript qute-bitwarden
|
||||
q: null
|
||||
tm: tab-move
|
||||
to: tab-focus
|
||||
wB: null
|
||||
ø: 'cmd-set-text :'
|
||||
colors.webpage.darkmode.enabled:
|
||||
global: false
|
||||
content.desktop_capture:
|
||||
https://meet.google.com: true
|
||||
content.fullscreen.window:
|
||||
global: true
|
||||
content.register_protocol_handler:
|
||||
https://calendar.google.com?cid=%25s: true
|
||||
tabs.mode_on_change:
|
||||
global: restore
|
||||
tabs.position:
|
||||
global: top
|
||||
|
||||
Reference in New Issue
Block a user