Compare commits
2 commits
7a85696281
...
70c8066d3f
| Author | SHA1 | Date | |
|---|---|---|---|
| 70c8066d3f | |||
| c27e3e5d61 |
3 changed files with 22 additions and 2 deletions
|
|
@ -48,8 +48,8 @@ Plug 'nvim-lua/plenary.nvim'
|
|||
Plug 'NeogitOrg/neogit'
|
||||
|
||||
Plug 'dense-analysis/ale'
|
||||
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||
Plug 'neovim/nvim-lspconfig'
|
||||
|
||||
Plug 'folke/which-key.nvim'
|
||||
|
||||
|
|
@ -61,6 +61,8 @@ Plug 'numToStr/Navigator.nvim'
|
|||
|
||||
Plug 'stevearc/conform.nvim'
|
||||
|
||||
Plug 'MrPicklePinosaur/typst-conceal.vim', {'for': 'typst'}
|
||||
|
||||
call plug#end()
|
||||
|
||||
lua require('neogit').setup({})
|
||||
|
|
@ -112,10 +114,13 @@ tnoremap <silent> <A-k> <CMD>NavigatorUp<CR>
|
|||
tnoremap <silent> <A-j> <CMD>NavigatorDown<CR>
|
||||
tnoremap <silent> <A-p> <CMD>NavigatorPrevious<CR>
|
||||
|
||||
lua require('lspconfig').typst_lsp.setup({})
|
||||
|
||||
lua << EOF
|
||||
require('conform').setup({
|
||||
formatters_by_ft = {
|
||||
sml = { "smlfmt" },
|
||||
typst = { "typstyle" },
|
||||
},
|
||||
format_on_save = {
|
||||
timeout_ms = 500,
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ set $down j
|
|||
set $up k
|
||||
set $right l
|
||||
# Your preferred terminal emulator
|
||||
set $term kitty
|
||||
set $term wezterm
|
||||
set $browser firefox
|
||||
set $emacs "emacsclient --create-frame --alternate-editor='emacs'"
|
||||
# Your preferred application launcher
|
||||
|
|
|
|||
15
wezterm/.config/wezterm/wezterm.lua
Normal file
15
wezterm/.config/wezterm/wezterm.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
local wezterm = require 'wezterm'
|
||||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
config.color_scheme = 'Catppuccin Mocha'
|
||||
config.font = wezterm.font('Iosevka Nerd Font Mono')
|
||||
config.font_size = 15.0
|
||||
|
||||
config.default_cursor_style = 'SteadyBar'
|
||||
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
config.use_fancy_tab_bar = false
|
||||
config.tab_bar_at_bottom = true
|
||||
|
||||
return config
|
||||
Loading…
Reference in a new issue