Compare commits

...

3 commits

Author SHA1 Message Date
f80ddb41bc
nvim: Change to Navigator fork supporting wezterm
Changed to personal fork of Navigator which supports wezterm for the
time being - until the changes are merged in some fashion upstream.
2022-12-08 13:13:20 +01:00
b2e659454f
wezterm: Default to dark theme and general font
Generalized the font used from special ligaturized Iosevka to the
standard Iosevka installed in the bootstrap process.

Changed from a blindingly bright default color scheme to a nice dark one
(Nord).
2022-12-08 13:05:36 +01:00
4f8d495191
nvim: Switch Navigator plugin to use wezterm
Using wezterm in current implementation of Navigator.nvim plugin -
somewhat of a HACK until the final implementation exists in the plugin.
2022-11-25 17:02:49 +01:00
2 changed files with 4 additions and 3 deletions

View file

@ -21,7 +21,8 @@ require("packer").startup(function()
-- vim plugs
-- essential
use {
'numToStr/Navigator.nvim',
'marty-oehme/Navigator.nvim',
branch = 'feat/add-wezterm-navigation',
config = function() require('Navigator').setup() end
} -- allow seamless navigation between vim buffers and tmux splits
use 'jeffkreeftmeijer/vim-numbertoggle' -- toggles numbers to absolute for all buffers but the current which is relative

View file

@ -64,12 +64,12 @@ return {
tab_bar_at_bottom = true,
window_padding = { left = 0, right = 0, top = 0, bottom = 0 },
color_scheme = "Mexico Light (base16)",
color_scheme = "Nord (base16)",
-- default_prog = {"nu"},
scrollback_lines = 10000,
font = wezterm.font('Liga Iosevka'),
font = wezterm.font('Iosevka'),
line_height = 1.0,
leader = { key = 'a', mods = 'CTRL', timeout_milliseconds = 1500 },