summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVon Random <von@vdrandom.org>2023-10-06 14:54:59 +0300
committerVon Random <von@vdrandom.org>2023-10-06 14:54:59 +0300
commit100f4f6807cacd8658c02520ce427785019b86e6 (patch)
tree867516c4d9137f7e4688491574927b3d7ce53a04
parentad52e357a93a6580161bed5a652472ef80453516 (diff)
nvim: enable ale for go; wezterm: use normal font as nerd fonts are builtin
-rw-r--r--cli/.config/nvim/lua/plugins.lua2
-rw-r--r--gui/.wezterm.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/.config/nvim/lua/plugins.lua b/cli/.config/nvim/lua/plugins.lua
index c8ae6da..8e159dd 100644
--- a/cli/.config/nvim/lua/plugins.lua
+++ b/cli/.config/nvim/lua/plugins.lua
@@ -10,7 +10,7 @@ require('lazy').setup {
{'lifepillar/vim-solarized8', branch = 'neovim'},
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
- {'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'sh', 'zsh', 'lua', 'python'}},
+ {'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
'lewis6991/gitsigns.nvim',
'lifepillar/vim-cheat40',
'tpope/vim-rsi',
diff --git a/gui/.wezterm.lua b/gui/.wezterm.lua
index 6931ead..4cc6796 100644
--- a/gui/.wezterm.lua
+++ b/gui/.wezterm.lua
@@ -1,6 +1,6 @@
local wt = require('wezterm')
local act = wt.action
-local font = 'FantasqueSansM Nerd Font'
+local font = 'Fantasque Sans Mono'
local harfbuzz_features = nil
local fontsizes = { Darwin = 15, others = 12 }
local theme = 'Solarized Light (Gogh)'