General updates
This commit is contained in:
parent
09856a3d9f
commit
6739e1e280
@ -94,7 +94,7 @@
|
|||||||
if has("nvim")
|
if has("nvim")
|
||||||
else
|
else
|
||||||
if has("mac")
|
if has("mac")
|
||||||
set guifont=Iosevka-Term:h16
|
set guifont=Iosevka-Term:h20
|
||||||
elseif has("win32")
|
elseif has("win32")
|
||||||
set guifont=Iosevka\ Term\ Regular\ 15
|
set guifont=Iosevka\ Term\ Regular\ 15
|
||||||
else
|
else
|
||||||
|
@ -3,6 +3,7 @@ local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nv
|
|||||||
local is_bootstrap = false
|
local is_bootstrap = false
|
||||||
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
||||||
is_bootstrap = true
|
is_bootstrap = true
|
||||||
|
vim.fn.system({'mkdir', '-p', install_path})
|
||||||
vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
|
vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
|
||||||
vim.cmd [[packadd packer.nvim]]
|
vim.cmd [[packadd packer.nvim]]
|
||||||
end
|
end
|
||||||
@ -66,28 +67,6 @@ require('packer').startup(function(use)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Personal keymapping
|
|
||||||
vim.api.nvim_set_keymap('n', '<c-z>', ':bn<CR>', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('v', '<c-z>', ':bn<CR>', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('n', '<c-x>', ':bp<CR>', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('n', '<F5>', ':e<CR>', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('n', '<F6>', '<C-W>w', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('n', '<F18>', '<C-W>W', { noremap = 1 }) -- S-F6 (F18 defined in ST's config.h)
|
|
||||||
vim.api.nvim_set_keymap('n', '<F7>', '<C-W>o', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('n', '<F8>', '<C-W>v', { noremap = 1 })
|
|
||||||
vim.api.nvim_set_keymap('n', '<F20>', '<C-W>s', { noremap = 1 }) -- S-F8 (F20 defined in ST's config.h)
|
|
||||||
vim.api.nvim_set_keymap('n', '<F35>', ':confirm bd<CR>', { noremap = 1 }) -- C-F11 (F35 defined in ST's config.h)
|
|
||||||
vim.api.nvim_set_keymap('v', '<LeftRelease>','"*ygv', { noremap = 1 }) -- Copy selection to clipboard
|
|
||||||
vim.api.nvim_set_keymap('v', '<2-LeftRelease>','"*ygv', { noremap = 1 }) -- Copy word selection to clipboard
|
|
||||||
vim.api.nvim_set_keymap('v', '<3-LeftRelease>','"*ygv', { noremap = 1 }) -- Copy line selection to clipboard
|
|
||||||
vim.api.nvim_set_keymap('v', '<4-LeftRelease>','"*ygv', { noremap = 1 }) -- Copy column selection to clipboard
|
|
||||||
vim.api.nvim_set_keymap('v', '<c-r>', '"hy/<C-r>h<cr>', { noremap = 1 }) -- Search selected text
|
|
||||||
vim.api.nvim_set_keymap('n', '<c-Space>', 'za', { noremap = 1 }) -- Toggle fold
|
|
||||||
vim.api.nvim_set_keymap('v', '<', '<gv', { noremap = 1 }) -- Preserve selection after left indent
|
|
||||||
vim.api.nvim_set_keymap('v', '>', '>gv', { noremap = 1 }) -- Preserve selection after right indent
|
|
||||||
vim.api.nvim_set_keymap('v', 'Q', 'gqap', { noremap = 1 }) -- Reflow visually highlighted lines with Q
|
|
||||||
vim.api.nvim_set_keymap('n', 'Q', 'gq', { noremap = 1 }) -- Reflow text
|
|
||||||
|
|
||||||
-- Nerd Tree (File navigation)
|
-- Nerd Tree (File navigation)
|
||||||
use 'preservim/nerdtree'
|
use 'preservim/nerdtree'
|
||||||
vim.api.nvim_set_keymap('n', '<c-t>', ':NERDTreeToggle %<CR>', { noremap = 1 })
|
vim.api.nvim_set_keymap('n', '<c-t>', ':NERDTreeToggle %<CR>', { noremap = 1 })
|
||||||
@ -115,7 +94,16 @@ require('packer').startup(function(use)
|
|||||||
'williamboman/mason-lspconfig.nvim',
|
'williamboman/mason-lspconfig.nvim',
|
||||||
|
|
||||||
-- Useful status updates for LSP
|
-- Useful status updates for LSP
|
||||||
'j-hui/fidget.nvim',
|
{'j-hui/fidget.nvim', branch = 'legacy'},
|
||||||
|
use {
|
||||||
|
'j-hui/fidget.nvim',
|
||||||
|
tag = 'legacy',
|
||||||
|
config = function()
|
||||||
|
require("fidget").setup {
|
||||||
|
-- options
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,12 +176,17 @@ vim.api.nvim_create_autocmd('BufWritePost', {
|
|||||||
-- [[ Setting options ]]
|
-- [[ Setting options ]]
|
||||||
-- See `:help vim.o`
|
-- See `:help vim.o`
|
||||||
|
|
||||||
|
if vim.g.neovide then
|
||||||
|
vim.o.guifont = "Iosevka Term:h16"
|
||||||
|
end
|
||||||
|
|
||||||
-- Set highlight on search
|
-- Set highlight on search
|
||||||
vim.o.hlsearch = true
|
vim.o.hlsearch = true
|
||||||
|
|
||||||
-- Highlight problematic whitespace
|
-- Highlight problematic whitespace
|
||||||
vim.o.list = true
|
vim.o.list = true
|
||||||
vim.opt.listchars = { tab = '▶ ', trail = '●', extends = '#', nbsp = '.' }
|
vim.opt.listchars = { tab = '▶ ', trail = '●', extends = '#', nbsp = '.' }
|
||||||
|
vim.o.wrap = false
|
||||||
|
|
||||||
-- Make line numbers default
|
-- Make line numbers default
|
||||||
vim.wo.number = true
|
vim.wo.number = true
|
||||||
@ -240,6 +233,31 @@ vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
|
|||||||
vim.keymap.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
|
vim.keymap.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
|
||||||
vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true })
|
vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true })
|
||||||
|
|
||||||
|
-- Personal keymapping
|
||||||
|
vim.keymap.set('n', '<c-z>', ':bn<CR>', { silent = true })
|
||||||
|
vim.keymap.set('v', '<c-z>', ':bn<CR>', { silent = true })
|
||||||
|
vim.keymap.set('n', '<c-x>', ':bp<CR>', { silent = true })
|
||||||
|
vim.keymap.set('n', '<F5>', ':e<CR>', { silent = true })
|
||||||
|
vim.keymap.set('n', '<F6>', '<C-W>w', { silent = true })
|
||||||
|
vim.keymap.set('n', '<F18>', '<C-W>W', { silent = true }) -- S-F6 (F18 defined in ST's config.h)
|
||||||
|
vim.keymap.set('n', '<F7>', '<C-W>o', { silent = true })
|
||||||
|
vim.keymap.set('n', '<F8>', '<C-W>v', { silent = true })
|
||||||
|
vim.keymap.set('n', '<F20>', '<C-W>s', { silent = true }) -- S-F8 (F20 defined in ST's config.h)
|
||||||
|
vim.keymap.set('n', '<F35>', ':confirm bd<CR>', { silent = true }) -- C-F11 (F35 defined in ST's config.h)
|
||||||
|
vim.keymap.set('v', '<LeftRelease>','"*ygv', { silent = true }) -- Copy selection to clipboard
|
||||||
|
vim.keymap.set('v', '<2-LeftRelease>','"*ygv', { silent = true }) -- Copy word selection to clipboard
|
||||||
|
vim.keymap.set('v', '<3-LeftRelease>','"*ygv', { silent = true }) -- Copy line selection to clipboard
|
||||||
|
vim.keymap.set('v', '<4-LeftRelease>','"*ygv', { silent = true }) -- Copy column selection to clipboard
|
||||||
|
vim.keymap.set('v', '<c-r>', '"hy/<C-r>h<cr>', { silent = true }) -- Search selected text
|
||||||
|
vim.keymap.set('n', '<c-Space>', 'za', { silent = true }) -- Toggle fold
|
||||||
|
vim.keymap.set('v', '<', '<gv', { silent = true }) -- Preserve selection after left indent
|
||||||
|
vim.keymap.set('v', '>', '>gv', { silent = true }) -- Preserve selection after right indent
|
||||||
|
vim.keymap.set('v', 'Q', 'gqap', { silent = true }) -- Reflow visually highlighted lines with Q
|
||||||
|
vim.keymap.set('n', 'Q', 'gq', { silent = true }) -- Reflow text
|
||||||
|
|
||||||
|
vim.keymap.set('n', '<leader>td', 'a[<C-r>=strftime("%Y/%m/%d")<CR>] <Esc>', { silent = true }) -- Insert Date after cursor
|
||||||
|
vim.keymap.set('n', '<leader>tt', 'a[<C-r>=strftime("%Y/%m/%d %X")<CR>] <Esc>', { silent = true }) -- Insert Date and time after cursor
|
||||||
|
|
||||||
-- [[ Highlight on yank ]]
|
-- [[ Highlight on yank ]]
|
||||||
-- See `:help vim.highlight.on_yank()`
|
-- See `:help vim.highlight.on_yank()`
|
||||||
local highlight_group = vim.api.nvim_create_augroup('YankHighlight', { clear = true })
|
local highlight_group = vim.api.nvim_create_augroup('YankHighlight', { clear = true })
|
||||||
@ -303,7 +321,7 @@ vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { de
|
|||||||
-- See `:help nvim-treesitter`
|
-- See `:help nvim-treesitter`
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter.configs').setup {
|
||||||
-- Add languages to be installed here that you want installed for treesitter
|
-- Add languages to be installed here that you want installed for treesitter
|
||||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help', 'perl', 'ruby', 'verilog' },
|
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'perl', 'ruby', 'verilog' },
|
||||||
|
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
@ -7,7 +7,7 @@ return {
|
|||||||
-- MacBook Pro setting with proper DPI
|
-- MacBook Pro setting with proper DPI
|
||||||
font = wezterm.font("Iosevka Term"),
|
font = wezterm.font("Iosevka Term"),
|
||||||
font_size = 18,
|
font_size = 18,
|
||||||
font_antialias = "Subpixel",
|
-- font_antialias = "Subpixel",
|
||||||
dpi = 144.0,
|
dpi = 144.0,
|
||||||
|
|
||||||
-- Don't want tabbar by default
|
-- Don't want tabbar by default
|
||||||
@ -16,6 +16,10 @@ return {
|
|||||||
-- Native fullscreen behavior on MacOS
|
-- Native fullscreen behavior on MacOS
|
||||||
native_macos_fullscreen_mode = true,
|
native_macos_fullscreen_mode = true,
|
||||||
|
|
||||||
|
-- -- Acceleration
|
||||||
|
-- front_end = "WebGpu",
|
||||||
|
-- webgpu_power_preference = "HighPerformance",
|
||||||
|
|
||||||
-- Keyboard bindings
|
-- Keyboard bindings
|
||||||
keys = {
|
keys = {
|
||||||
{ key = 'f', mods = 'CMD|CTRL', action = wezterm.action.ToggleFullScreen, },
|
{ key = 'f', mods = 'CMD|CTRL', action = wezterm.action.ToggleFullScreen, },
|
||||||
@ -26,7 +30,7 @@ return {
|
|||||||
cursor_bg = "red",
|
cursor_bg = "red",
|
||||||
cursor_fg = "black",
|
cursor_fg = "black",
|
||||||
cursor_border = "grey",
|
cursor_border = "grey",
|
||||||
compose_curspr = "orange",
|
compose_cursor = "orange",
|
||||||
|
|
||||||
-- Color scheme
|
-- Color scheme
|
||||||
-- Molokini (https://github.com/asolkar/vim-color-molokini/blob/master/colors/molokini.vim)
|
-- Molokini (https://github.com/asolkar/vim-color-molokini/blob/master/colors/molokini.vim)
|
||||||
@ -34,7 +38,7 @@ return {
|
|||||||
ansi = { "#000000", "#F92672", "#A6E22E", "#FFDF5F",
|
ansi = { "#000000", "#F92672", "#A6E22E", "#FFDF5F",
|
||||||
"#66D9EF", "#7070F0", "#A1FFA4", "#ffffff" },
|
"#66D9EF", "#7070F0", "#A1FFA4", "#ffffff" },
|
||||||
|
|
||||||
bright = { "#808080", "#f51d5a", "#9EC400", "#E7C547",
|
brights = { "#808080", "#f51d5a", "#9EC400", "#E7C547",
|
||||||
"#7AA6DA", "#B77EE0", "#54AE96", "#ffffff" },
|
"#7AA6DA", "#B77EE0", "#54AE96", "#ffffff" },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user