Compare commits
No commits in common. "70c8066d3fcb2bae51da975b7e661c19448d13f4" and "7a856962810474aced4b1dd785c0e32b22aae908" have entirely different histories.
70c8066d3f
...
7a85696281
3 changed files with 2 additions and 22 deletions
|
|
@ -48,8 +48,8 @@ Plug 'nvim-lua/plenary.nvim'
|
||||||
Plug 'NeogitOrg/neogit'
|
Plug 'NeogitOrg/neogit'
|
||||||
|
|
||||||
Plug 'dense-analysis/ale'
|
Plug 'dense-analysis/ale'
|
||||||
|
|
||||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
Plug 'neovim/nvim-lspconfig'
|
|
||||||
|
|
||||||
Plug 'folke/which-key.nvim'
|
Plug 'folke/which-key.nvim'
|
||||||
|
|
||||||
|
|
@ -61,8 +61,6 @@ Plug 'numToStr/Navigator.nvim'
|
||||||
|
|
||||||
Plug 'stevearc/conform.nvim'
|
Plug 'stevearc/conform.nvim'
|
||||||
|
|
||||||
Plug 'MrPicklePinosaur/typst-conceal.vim', {'for': 'typst'}
|
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
lua require('neogit').setup({})
|
lua require('neogit').setup({})
|
||||||
|
|
@ -114,13 +112,10 @@ tnoremap <silent> <A-k> <CMD>NavigatorUp<CR>
|
||||||
tnoremap <silent> <A-j> <CMD>NavigatorDown<CR>
|
tnoremap <silent> <A-j> <CMD>NavigatorDown<CR>
|
||||||
tnoremap <silent> <A-p> <CMD>NavigatorPrevious<CR>
|
tnoremap <silent> <A-p> <CMD>NavigatorPrevious<CR>
|
||||||
|
|
||||||
lua require('lspconfig').typst_lsp.setup({})
|
|
||||||
|
|
||||||
lua << EOF
|
lua << EOF
|
||||||
require('conform').setup({
|
require('conform').setup({
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
sml = { "smlfmt" },
|
sml = { "smlfmt" },
|
||||||
typst = { "typstyle" },
|
|
||||||
},
|
},
|
||||||
format_on_save = {
|
format_on_save = {
|
||||||
timeout_ms = 500,
|
timeout_ms = 500,
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ set $down j
|
||||||
set $up k
|
set $up k
|
||||||
set $right l
|
set $right l
|
||||||
# Your preferred terminal emulator
|
# Your preferred terminal emulator
|
||||||
set $term wezterm
|
set $term kitty
|
||||||
set $browser firefox
|
set $browser firefox
|
||||||
set $emacs "emacsclient --create-frame --alternate-editor='emacs'"
|
set $emacs "emacsclient --create-frame --alternate-editor='emacs'"
|
||||||
# Your preferred application launcher
|
# Your preferred application launcher
|
||||||
|
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
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